X-Git-Url: http://git.roojs.org/?a=blobdiff_plain;f=DataObjects%2FI18n.php;h=77f81b8ee72762b364f7026d22f3df80ad34313b;hb=576d8cf97a786080e56759154519f365b5d15e67;hp=0113ec74dfe16af4fb55aaa71fb7555ca20f73df;hpb=b8182e93627b21464e9ec780e6e541cc4732fa80;p=Pman.Core diff --git a/DataObjects/I18n.php b/DataObjects/I18n.php index 0113ec74..77f81b8e 100644 --- a/DataObjects/I18n.php +++ b/DataObjects/I18n.php @@ -46,9 +46,9 @@ class Pman_Core_DataObjects_I18n extends DB_DataObject // 'ta', // tamil // '**', // other ), - 'c' => array( - 'AU', 'CN', 'HK', 'IN', 'ID', 'JP', 'MY', 'NZ', 'TW', 'SG', 'TH', 'KR', 'US', 'PH', 'VN','**' - ), + 'c' => '*', // array( + //'AU', 'CN', 'HK', 'IN', 'ID', 'JP', 'MY', 'NZ', 'TW', 'SG', 'TH', 'KR', 'US', 'PH', 'VN','**' + //), 'm' => array( 'USD', 'HKD', 'GBP', 'CNY', 'SGD', 'JPY' ), @@ -70,9 +70,17 @@ class Pman_Core_DataObjects_I18n extends DB_DataObject } $loaded =true; $ff= HTML_FlexyFramework::get(); - - // since our opts array changed alot.. - $opts = empty($ff->Pman_Core_I18N) ? (empty($ff->Pman_I18N) ? array() : $ff->Pman_I18N) : $ff->Pman_Core_I18N; + + // BC compatible.. if any of these are set, then we use them as the settings.. + $opts = array(); + foreach(array('Pman_Core_I18N', 'Pman_I18N','Pman_I18n') as $pk) { + if (isset($ff->$pk)) { + var_dump($pk); + $opts= $ff->$pk; + break; + } + } + print_R($opts); // var_dump($opts);exit; @@ -110,14 +118,14 @@ class Pman_Core_DataObjects_I18n extends DB_DataObject } if (!empty($q['query']['name'])) { //DB_DAtaObject::debugLevel(1); - - $this->whereAdd("lval LIKE '". $this->escape($q['query']['name']). "%'"); + $v = strtoupper($this->escape($q['query']['name'])); + $this->whereAdd("upper(lval) LIKE '%{$v}%'"); } if (!empty($q['_filtered']) && !empty($this->ltype)) { $cfg = $this->cfg(); $filter = $cfg[$this->ltype]; - print_R($filter);exit; + $this->whereAddIn('lkey', $filter, 'string'); } @@ -284,7 +292,7 @@ class Pman_Core_DataObjects_I18n extends DB_DataObject $complete = $x->fetchAll('lkey'); $list = $this->availableCodes($ltype); - // echo '
'; print_r($list); 
+       echo '
'; print_r($list); 
         
         foreach($list as $lkey) {
             // skip ones we know we have done...