DataObjects/I18n.php
[Pman.Core] / DataObjects / I18n.php
index d8509bb..1edb61b 100644 (file)
@@ -74,17 +74,17 @@ class Pman_Core_DataObjects_I18n extends DB_DataObject
         
         // 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) {
+        foreach(array('Pman_Core_I18n', 'Pman_Core_I18N', 'Pman_I18N','Pman_I18n') as $pk) {
             if (isset($ff->$pk)) {
                 //var_dump($pk);
-                $opts=  $ff->$pk;
+                $opts =  $ff->$pk;
                 break;
             }
         }
         //echo '<PRE>';print_R($opts);//exit;
         
          
-       //  var_dump($opts);exit;
+        // var_dump($opts);exit;
         
         $i = DB_DataObject::Factory('I18n');
         // load the cofiguration
@@ -101,7 +101,7 @@ class Pman_Core_DataObjects_I18n extends DB_DataObject
         foreach($opts as $k=>$v) {
             
             if ($v == '*') { // everything..
-                 self::$cfg[$k] = $i->availableCodes($k, false);
+                self::$cfg[$k] = '*'; //$i->availableCodes($k, false);
                 continue;
             }
            
@@ -137,7 +137,9 @@ class Pman_Core_DataObjects_I18n extends DB_DataObject
         
         if (!empty($q['_filtered']) && !empty($this->ltype)) {
             $cfg = $this->cfg();
+            print_r($cfg);exit;
             $filter = $cfg[$this->ltype];
+            
             $this->whereAddIn('lkey', $filter, 'string'); 
             
             
@@ -199,7 +201,7 @@ class Pman_Core_DataObjects_I18n extends DB_DataObject
     {
         $ret = array();
         $cfg = $this->cfg();
-
+        //echo '<PRE>';print_r($cfg);
         switch ($t) {
             case 'c':
                 require_once 'I18Nv2/Country.php';