I18n.php
[Pman.Core] / I18n.php
1 <?php
2 /**
3  * 
4  * Either we load this as a standard array at start??
5  * eg. after login...
6  * 
7  * We basically load up all supported languages at the start of the application.
8  * 
9  * By default it returns
10  * 
11  * Pman.I18n.Data = {
12       
13       en : {
14           l :  [ { code : 'en', title : 'English' }, .... ],
15           c :  [ { code : 'UK', title : 'United Kingdom' }, .... ],
16           m :  [ { code : 'USD', title : 'US Dollars' }, .... ],
17       fr : ....
18    }
19  * 
20  * 
21  * other usage:
22  * 
23  * index.php/Pman/I18N/BuildDB -- buildes the database..
24  * .. other formats are depreciated, but are supported by the old code....
25  * 
26  * 
27  * Database language translation should be done using the database table.
28  * So sorting can be done correctly..
29  * 
30  * Configuration in index.php..
31  * 
32  *  'Pman_Core_I18N' => array(
33       'l' => array(
34             'en', 'zh_CN',   'zh_HK',  'zh_TW', 'th', 'ko', 'ja', 'ms', 
35             'id', // indonesian
36             'tl', // tagalog
37             'vi', //vietnamise
38             'hi', // hindi
39             'ta', // tamil
40             '**', // other
41         ), 
42        'c' => '*', // eg. all languages..
43        'm' => array( 'USD', 'HKD', 'GBP', 'CNY', 'SGD', 'JPY' )
44     ), 
45
46  * 
47  */
48 require_once 'Pman.php';
49
50 class Pman_Core_I18N extends Pman
51 {
52  
53     
54     // these are the default languages we support.
55     // they will allways be overlaid with the current configuration (via getAuth)
56     // THESE WILL ALLWAYS BE UPPERCASE!!!
57     var $cfg = array(
58         // translated versions availalable
59         
60         't' => array(
61             'en', 'zh_CN',   'zh_HK', 
62         ),
63         // languages available
64         'l' => array(
65             
66             'en', 'zh_CN',   'zh_HK',  'zh_TW', 'th', 'ko', 'ja', 'ms', 
67             'id', // indonesian
68             'tl', // tagalog
69             'vi', //vietnamise
70             'hi', // hindi
71             'ta', // tamil
72             '**', // other
73         ),
74         'c' => array(
75              'AU', 'CN', 'HK', 'IN', 'ID', 'JP', 'MY', 'NZ', 'TW', 'SG', 'TH', 'KR', 'US', 'PH', 'VN','**'
76         ),
77         'm' => array(
78             'USD', 'HKD', 'GBP', 'CNY', 'SGD', 'JPY'
79         )
80     );
81     
82     
83      
84     
85     
86     function getAuth()
87     {
88         parent::getAuth(); // load company!
89         //return true;
90         $au = $this->getAuthUser();
91         //if (!$au) {
92         //    $this->jerr("Not authenticated", array('authFailure' => true));
93         //}
94         $this->authUser = $au;
95         
96         $ff= HTML_FlexyFramework::get();
97          
98         
99         $opts = empty($ff->Pman_Core_I18N) ? (empty($ff->Pman_I18N) ? array() : $ff->Pman_I18N)  : $ff->Pman_Core_I18N;
100         
101         $i = DB_DataObject::Factory('I18n');
102         // load the cofiguration
103         foreach($opts as $k=>$v) {
104             
105             if ($v == '*') { // everything..
106                 $this->cfg[$k] = $i->availableCodes($k);
107                 continue;
108             }
109             $this->cfg[$k] = is_array($v) ? $v  : explode(',', $v);
110         }
111         
112         
113         
114         
115         return true;
116     }
117      
118     
119      
120     function get($s ='')
121     {
122         
123         $i = DB_DataObject::Factory('I18n');
124         $i->buildDb();
125         $this->outputJavascript();
126     
127         
128         exit;
129         
130     }
131     
132     function outputJavascript()
133     {
134         
135         require_once 'I18Nv2/Country.php';
136         require_once 'I18Nv2/Language.php';
137         require_once 'I18Nv2/Currency.php';
138         
139         $langs = $this->cfg['t'];
140        // var_dump($langs);exit;
141         $ar = array();
142         foreach($langs as $lang)
143         {
144             $rlang = array_shift(explode('_', strtoupper($lang)));
145             
146             $ar[$lang] = array(
147                 'l' => $this->objToList('l', new I18Nv2_Language($rlang, 'UTF-8')),
148                 'c' => $this->objToList('c', new I18Nv2_Country($rlang, 'UTF-8')),
149                 'm' => $this->objToList('m', new I18Nv2_Currency($rlang, 'UTF-8'))
150             );
151         }
152         //echo '<PRE>';print_r($ar);
153         header('Content-type: text/javascript');
154         echo 'Pman.I18n.Data = ' .  json_encode($ar);
155         exit;
156         
157         
158         
159     }
160     function objToList($type, $obj) {
161         $ret = array();
162          
163          
164         foreach($this->cfg[$type] as $k) {
165             $sub = false;
166             
167             if (strpos($k, '_') !== false) {
168                 $bits = explode('_', $k);
169                 $k = array_shift($bits);
170                 $sub = array_shift($bits);
171             }
172             $v = $k == '**' ? 'Other' : $obj->getName($k);
173             
174             if ($sub) {
175                 $v .= ' ('.$sub.')';
176             }
177             
178             $ret[] = array(
179                 'code'=>   ($type=='l' ? strtolower($k) : strtoupper($k)) . ($sub ? '_'.strtoupper($sub) : ''), 
180                 'title' => $v
181             );
182         }
183         return $ret;
184     }
185     
186      /**
187      * translate (used by database building);
188      * usage :
189      * require_once 'Pman/Core/I18N.php';
190      * $x = new Pman_Core_I18N();
191      * $x->translate($this->authuser, 'c', 'US');
192      * @param au - auth User
193      * @param type = 'c' or 'l'
194      * @param k - key to translate
195      * 
196      */
197      
198     function translate($au, $type, $k) 
199     {
200       
201         static $cache;
202         if (empty($k)) {
203             return '??';
204         }
205         $lang = !$au || empty($au->lang ) ? 'en' : is_string($au) ? $au : $au->lang;
206         $lbits = explode('_', strtoupper($lang));
207         $lang = $lbits[0];
208         
209         if (!isset($cache[$lang])) {
210             require_once 'I18Nv2/Country.php';
211             require_once 'I18Nv2/Language.php';
212             require_once 'I18Nv2/Currency.php';
213             $cache[$lang] = array(
214                 'l' =>  new I18Nv2_Language($lang, 'UTF-8'),
215                 'c' => new I18Nv2_Country($lang, 'UTF-8'),
216                 'm' => new I18Nv2_Currency($lang, 'UTF-8')
217             );
218             //echo '<PRE>';print_r(array($lang, $cache[$lang]['c']));
219         }
220         if ($k == '**') {
221             return 'Other / Unknown';
222         }
223     
224         
225         if ($type == 'l') {
226             $tolang = explode('_', $k);
227          
228             $ret = $cache[$lang][$type]->getName($tolang[0]);
229             if (count($tolang) > 1) {
230                 $ret.= '('.$tolang[1].')'; 
231             }
232             return $ret;
233         }
234         $ret = $cache[$lang][$type]->getName($k);
235         //print_r(array($k, $ret));
236         return $ret;
237         
238         
239     }
240      
241     
242 }