DataObjects/Core_notify_recur.php
[Pman.Core] / DataObjects / I18n.php
index 9930c3b..41bff06 100644 (file)
@@ -51,8 +51,43 @@ class Pman_Core_DataObjects_I18n extends DB_DataObject
         ),
         'm' => array(
             'USD', 'HKD', 'GBP', 'CNY', 'SGD', 'JPY'
-        )
+        ),
+        'add_l'=> array(), // additional languages... 
+        'add_c'=> array(), // additional countries...(eg. '-R' => 'Regional' )
+        'add_m'=> array(), // additional currencies...
+
+        
     );
+    /**
+     * initalizie the cfg aray
+     *
+     */
+    function cfg()
+    {
+        static $loaded  = false;
+        if ($loaded) {
+            return self::$cfg;
+        }
+        $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;
+        
+        $i = DB_DataObject::Factory('I18n');
+        // load the cofiguration
+        foreach($opts as $k=>$v) {
+            
+            if ($v == '*') { // everything..
+                self::$cfg[$k] = $i->availableCodes($k);
+                continue;
+            }
+            self::$cfg[$k] = is_array($v) ? $v  : explode(',', $v);
+        }
+        return self::$cfg;
+        
+        
+    }
     
     
       // the default configuration.
@@ -62,35 +97,99 @@ class Pman_Core_DataObjects_I18n extends DB_DataObject
         
         //DB_DataObject::debugLevel(1);
         if (!empty($q['query']['_with_en'])) {
+            
+            $this->buildDB(); // ensure we have the full database...
+            
             $this->selectAdd("
                 i18n_translate(ltype, lkey, 'en') as lval_en
                 
             ");
         }
+        if (!empty($q['query']['name'])) {
+            //DB_DAtaObject::debugLevel(1);
+        
+            $this->whereAdd("lval LIKE '". $this->escape($q['query']['name']). "%'");
+        }
     }
     
+    
+    function translate($inlang,$ltype,$kval)
+    {
+        
+        $x = DB_DataObject::factory('i18n');
+        $x->ltype = $ltype;
+        $x->inlang= $inlang;
+        $x->lkey = $kval;
+        $x->limit(1);
+        $x->find(true);
+        return $x->lval;
+        
+    }
+    
+    
+    
+    function toTransList($ltype, $inlang)
+    {
+        
+        
+        $this->ltype = $ltype;
+        $this->inlang= $inlang;
+        $this->selectAdd();
+        $this->selectAdd('lkey as code, lval as title');
+        
+        $this->find();
+        $ret = array();
+        while ($this->fetch()) {
+            $ret[] = array(
+                'code'  => $this->code,
+                'title' => $this->title
+            );
+        }
+        return $ret;
+    }
+     
+    
+    
+    
+    // -------------- code to handle importing into database..
+    
+    
+    
+    
     // returns a list of all countries/languages etc.. (with '*')
     function availableCodes($t)
     {
         $ret = array();
+        $cfg = $this->cfg();
+        
         switch ($t) {
             case 'c':
                 require_once 'I18Nv2/Country.php';
                 
                 $c = new I18Nv2_Country('en');
                 $ret =  array_keys($c->codes);
+                if (!empty($cfg['add_c'])) {
+                    $ret = array_merge($ret, array_keys($cfg['add_c']));
+                }
                 $ret[] = '**';
                 break;
+            
             case 'l':
                 require_once 'I18Nv2/Language.php';
                 $c = new I18Nv2_Language('en');
                 $ret =  array_keys($c->codes);
+                if (!empty($cfg['add_l'])) {
+                    $ret = array_merge($ret, array_keys($cfg['add_l']));
+                }
                 $ret[] = '**';
                 break;
             case 'm':
                 require_once 'I18Nv2/Currency.php';
                 $c = new I18Nv2_Currency('en');
                 $ret =  array_keys($c->codes);
+                if (!empty($cfg['add_m'])) {
+                    $ret = array_merge($ret, array_keys($cfg['add_m']));
+                }
                 $ret[] = '**';
                 break;
         }
@@ -106,8 +205,14 @@ class Pman_Core_DataObjects_I18n extends DB_DataObject
     
     function buildDB($ltype= false, $inlang= false )
     {
+        $cfg = $this->cfg();
         if ($ltype === false) {
-            die("OOPS NO LTYPE");
+            // trigger all builds.
+            //DB_DataObject::debugLevel(1);
+            $this->buildDB('c');
+            $this->buildDB('l');
+            $this->buildDB('m');
+            return;
         }
         if ($inlang == '**') {
             return; // dont bother building generic..
@@ -115,17 +220,32 @@ class Pman_Core_DataObjects_I18n extends DB_DataObject
         
         
         if ($inlang === false) {
-            foreach( $this->cfg['t'] as $l) {
+            // do we want to add our 'configured ones..'
+            // We only build translatiosn for our configured ones..
+            //foreach( $this->availableCodes('l') as $l) {
+                
+            foreach( $cfg['t'] as $l) {
                 $this->buildDB($ltype, $l);
             }
             return;
         }
         
-        $list =  $this->getDefaultCfg($ltype);
         
         //DB_DataObject::debugLevel(1);
+        $x = DB_DataObject::factory('i18n');
+        $x->inlang= $inlang;
+        $x->ltype = $ltype;
         
+        $complete = $x->fetchAll('lkey');
+        
+        $list =  $this->availableCodes($ltype);
+        
+        //print_r($list); 
         foreach($list as $lkey) {
+            // skip ones we know we have done...
+            if (in_array($lkey, $complete)) {
+                continue;
+            }
             $x = DB_DataObject::factory('i18n');
             $x->ltype = $ltype;
             $x->lkey = $lkey;
@@ -154,7 +274,7 @@ class Pman_Core_DataObjects_I18n extends DB_DataObject
     {
       
         static $cache;
-        
+        $cfg = $this->cfg();
         if (empty($k)) {
             return '??';
         }
@@ -177,7 +297,7 @@ class Pman_Core_DataObjects_I18n extends DB_DataObject
         if ($k == '**') {
             return 'Other / Unknown';
         }
-    
+        $ret = $cache[$lang][$type]->getName($k);
         
         if ($type == 'l') {
             $tolang = explode('_', $k);
@@ -186,9 +306,14 @@ class Pman_Core_DataObjects_I18n extends DB_DataObject
             if (count($tolang) > 1) {
                 $ret.= '('.$tolang[1].')'; 
             }
-            return $ret;
+             
         }
-        $ret = $cache[$lang][$type]->getName($k);
+        // our wierd countries/langs etc..
+        if (isset($cfg['add_' . $type][$k])) {
+            return $cfg['add_' . $type][$k];
+            
+        }
+        
         //print_r(array($k, $ret));
         return $ret;