DataObjects/Core_event_audit.php
[Pman.Core] / DataObjects / I18n.php
index 9930c3b..9f19cfc 100644 (file)
@@ -53,6 +53,36 @@ class Pman_Core_DataObjects_I18n extends DB_DataObject
             'USD', 'HKD', 'GBP', 'CNY', 'SGD', 'JPY'
         )
     );
+    /**
+     * 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,6 +92,9 @@ 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
                 
@@ -69,6 +102,48 @@ class Pman_Core_DataObjects_I18n extends DB_DataObject
         }
     }
     
+    
+    function translate($inlang,$ltype,$kval)
+    {
+        
+        $x = DB_DataObject::factory('i18n');
+        $x->ltype = $ltype;
+        $x->inlang= $inlang;
+        $x->kval = $kval;
+        $x->limit(1);
+        $x->find(true);
+        return $x->lval;
+        
+    }
+    
+    
+    
+    function toTransList($ltype, $inlang)
+    {
+        
+        $x = DB_DataObject::factory('i18n');
+        $x->ltype = $ltype;
+        $x->inlang= $inlang;
+        $x->selectAdd();
+        $x->selectAdd('lkey as code, lval as title');
+        $x->find();
+        $ret = array();
+        while ($x->fetch()) {
+            $ret[] = array(
+                'code' => $x->code,
+                'title' =>$x->title);
+        }
+        return $ret;
+    }
+     
+    
+    
+    
+    // -------------- code to handle importing into database..
+    
+    
+    
+    
     // returns a list of all countries/languages etc.. (with '*')
     function availableCodes($t)
     {
@@ -106,8 +181,14 @@ class Pman_Core_DataObjects_I18n extends DB_DataObject
     
     function buildDB($ltype= false, $inlang= false )
     {
+        $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 +196,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( self::$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);
+        
         
         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;