b2980f8875ce9c8a7445bb6fd6463137234be775
[Pman.Core] / DataObjects / I18n.php
1 <?php
2 /**
3  * Table Definition for i18n
4  *
5  * This is heavily related to the Pman_I18n implementation..
6  *
7  * It should eventually replace most of that..
8  * 
9  */
10 require_once 'DB/DataObject.php';
11
12 class Pman_Core_DataObjects_I18n extends DB_DataObject 
13 {
14     ###START_AUTOCODE
15     /* the code below is auto generated do not remove the above tag */
16
17     public $__table = 'i18n';                            // table name
18     public $id;                              // int(11)  not_null primary_key auto_increment
19     public $ltype;                           // string(1)  not_null multiple_key
20     public $lkey;                            // string(8)  not_null
21     public $inlang;                          // string(8)  not_null
22     public $lval;                            // string(64)  not_null
23
24     
25     /* the code above is auto generated do not remove the tag below */
26     ###END_AUTOCODE
27     
28     // we have a small default set of languages available..
29     // you can modify this by making this setting in the index.php loader.
30     // Pman_Core_i18n = array( 'c' => *, 'l' => '*', 'm' => '*')
31     
32     static $cfg = array(
33         // translated versions availalable
34         
35         't' => array(
36             'en', 'zh_CN',   'zh_HK', 
37         ),
38         // languages available
39         'l' => array(
40             
41             'en', 'zh_CN',   'zh_HK',  'zh_TW', 'th', 'ko', 'ja', 'ms', 
42             'id', // indonesian
43             'tl', // tagalog
44             'vi', //vietnamise
45             'hi', // hindi
46             'ta', // tamil
47             '**', // other
48         ),
49         'c' => array(
50              'AU', 'CN', 'HK', 'IN', 'ID', 'JP', 'MY', 'NZ', 'TW', 'SG', 'TH', 'KR', 'US', 'PH', 'VN','**'
51         ),
52         'm' => array(
53             'USD', 'HKD', 'GBP', 'CNY', 'SGD', 'JPY'
54         )
55     );
56     
57     
58       // the default configuration.
59     
60     function applyFilters($q, $au)
61     {
62         
63         //DB_DataObject::debugLevel(1);
64         if (!empty($q['query']['_with_en'])) {
65             $this->selectAdd("
66                 i18n_translate(ltype, lkey, 'en') as lval_en
67                 
68             ");
69         }
70     }
71     
72     // returns a list of all countries/languages etc.. (with '*')
73     function availableCodes($t)
74     {
75         $ret = array();
76         switch ($t) {
77             case 'c':
78                 require_once 'I18Nv2/Country.php';
79                 
80                 $c = new I18Nv2_Country('en');
81                 $ret =  array_keys($c->codes);
82                 $ret[] = '**';
83                 break;
84             case 'l':
85                 require_once 'I18Nv2/Language.php';
86                 $c = new I18Nv2_Language('en');
87                 $ret =  array_keys($c->codes);
88                 $ret[] = '**';
89                 break;
90             case 'm':
91                 require_once 'I18Nv2/Currency.php';
92                 $c = new I18Nv2_Currency('en');
93                 $ret =  array_keys($c->codes);
94                 $ret[] = '**';
95                 break;
96         }
97         
98         foreach ($ret as $k=>$v) {
99             $ret[$k] = strtoupper($v);
100         }
101         
102         
103         return $ret;
104     }
105     
106     
107     function buildDB($ltype= false, $inlang= false )
108     {
109         if ($ltype === false) {
110             die("OOPS NO LTYPE");
111         }
112         if ($inlang == '**') {
113             return; // dont bother building generic..
114         }
115         
116         
117         if ($inlang === false) {
118             foreach( $this->cfg['t'] as $l) {
119                 $this->buildDB($ltype, $l);
120             }
121             return;
122         }
123         
124         $list =  $this->getDefaultCfg($ltype);
125         
126         //DB_DataObject::debugLevel(1);
127         
128         foreach($list as $lkey) {
129             $x = DB_DataObject::factory('i18n');
130             $x->ltype = $ltype;
131             $x->lkey = $lkey;
132             $x->inlang= $inlang;
133             if ($x->find(true)) {
134                 $xx= clone($x);
135                 $x->lval = $this->translate($inlang, $ltype, $lkey);
136                 $x->update($xx);
137                 continue;
138             }
139             $x->lval = $this->translate($inlang, $ltype, $lkey);
140             $x->insert();
141             
142         }
143          
144         
145     }
146     
147     /**
148      * default translate  - use i18n classes to provide a value.
149      *
150      * 
151      */
152      
153     function defaultTranslate($au, $type, $k) 
154     {
155       
156         static $cache;
157         
158         if (empty($k)) {
159             return '??';
160         }
161         
162         $lang = !$au || empty($au->lang ) ? 'en' : is_string($au) ? $au : $au->lang;
163         $lbits = explode('_', strtoupper($lang));
164         $lang = $lbits[0];
165         
166         if (!isset($cache[$lang])) {
167             require_once 'I18Nv2/Country.php';
168             require_once 'I18Nv2/Language.php';
169             require_once 'I18Nv2/Currency.php';
170             $cache[$lang] = array(
171                 'l' =>  new I18Nv2_Language($lang, 'UTF-8'),
172                 'c' => new I18Nv2_Country($lang, 'UTF-8'),
173                 'm' => new I18Nv2_Currency($lang, 'UTF-8')
174             );
175             //echo '<PRE>';print_r(array($lang, $cache[$lang]['c']));
176         }
177         if ($k == '**') {
178             return 'Other / Unknown';
179         }
180     
181         
182         if ($type == 'l') {
183             $tolang = explode('_', $k);
184          
185             $ret = $cache[$lang][$type]->getName($tolang[0]);
186             if (count($tolang) > 1) {
187                 $ret.= '('.$tolang[1].')'; 
188             }
189             return $ret;
190         }
191         $ret = $cache[$lang][$type]->getName($k);
192         //print_r(array($k, $ret));
193         return $ret;
194         
195         
196     }
197     
198     
199 }