DataObjects/Core_notify_recur.php
[Pman.Core] / DataObjects / I18n.php
index 2227d9c..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,34 +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) {
+    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;
         }
@@ -101,10 +201,18 @@ class Pman_Core_DataObjects_I18n extends DB_DataObject
         
         return $ret;
     }
+    
+    
     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..
@@ -112,33 +220,102 @@ 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);
+        //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;
             $x->inlang= $inlang;
             if ($x->find(true)) {
                 $xx= clone($x);
-                $x->lval = $this->translate($inlang, $ltype, $lkey);
+                $x->lval = $this->defaultTranslate($inlang, $ltype, $lkey);
                 $x->update($xx);
                 continue;
             }
-            $x->lval = $this->translate($inlang, $ltype, $lkey);
+            $x->lval = $this->defaultTranslate($inlang, $ltype, $lkey);
             $x->insert();
             
         }
+         
+        
+    }
+    
+    /**
+     * default translate  - use i18n classes to provide a value.
+     *
+     * 
+     */
+     
+    function defaultTranslate($lang, $type, $k) 
+    {
+      
+        static $cache;
+        $cfg = $this->cfg();
+        if (empty($k)) {
+            return '??';
+        }
+
+        $lbits = explode('_', strtoupper($lang));
+        $lang = $lbits[0];
+        
+        if (!isset($cache[$lang])) {
+            require_once 'I18Nv2/Country.php';
+            require_once 'I18Nv2/Language.php';
+            require_once 'I18Nv2/Currency.php';
+            $cache[$lang] = array(
+                'l' =>  new I18Nv2_Language($lang, 'UTF-8'),
+                'c' => new I18Nv2_Country($lang, 'UTF-8'),
+                'm' => new I18Nv2_Currency($lang, 'UTF-8')
+            );
+            //echo '<PRE>';print_r(array($lang, $cache[$lang]['c']));
+        }
+        
+        if ($k == '**') {
+            return 'Other / Unknown';
+        }
+        $ret = $cache[$lang][$type]->getName($k);
         
+        if ($type == 'l') {
+            $tolang = explode('_', $k);
+         
+            $ret = $cache[$lang][$type]->getName($tolang[0]);
+            if (count($tolang) > 1) {
+                $ret.= '('.$tolang[1].')'; 
+            }
+             
+        }
+        // our wierd countries/langs etc..
+        if (isset($cfg['add_' . $type][$k])) {
+            return $cfg['add_' . $type][$k];
+            
+        }
         
+        //print_r(array($k, $ret));
+        return $ret;
         
         
     }