DataObjects/core.sql
[Pman.Core] / I18n.php
index 3846f5c..d7e6f52 100644 (file)
--- a/I18n.php
+++ b/I18n.php
@@ -47,7 +47,7 @@
  */
 require_once 'Pman.php';
 
-class Pman_Core_I18N extends Pman
+class Pman_Core_I18n extends Pman
 {
  
     
@@ -116,28 +116,59 @@ class Pman_Core_I18N extends Pman
         
         switch($s) {
             case 'Lang':
+                 
+                
                 $i->ltype = 'l';
                 $i->applyFilters($_REQUEST, $this->authUser, $this);
-                $this->jdata($i->toTransList('l',  $lbits[0]));
+                $this->jdata($i->toTransList('l',  implode('_',$lbits)));
                 break;
 
             case 'Country':
                 $i->ltype = 'c';
                 $i->applyFilters($_REQUEST, $this->authUser, $this);
-                $this->jdata($i->toTransList('c',  $lbits[0]));
-                
-                $ret = $this->getList('c', $lbits[0],empty($_REQUEST['filter']) ? false : $_REQUEST['filter']);
+                $this->jdata($i->toTransList('c',  implode('_',$lbits)));
+               
                 break;
                 
-             case 'Currency':
+            case 'Currency':
                 $i->ltype = 'm';
                 $i->applyFilters($_REQUEST, $this->authUser, $this);
-                $this->jdata($i->toTransList('m',  $lbits[0]));
+                $this->jdata($i->toTransList('m',  implode('_',$lbits)));
                 break;
+            
+            case 'Timezone':
+                $ar = DateTimeZone::listAbbreviations();
+                $ret = array();
+                $tza = array();
+                foreach($ar as $tl => $sar) {
+                    foreach($sar as $tz) {
+                        $tza[]  = $tz['timezone_id'];
+                    
+                    }
+                }
+                $tza= array_unique($tza);
+                sort($tza);
+                foreach($tza as $tz) {
+                    //filtering..
+                    if (empty($_REQUEST['q']) ||
+                            0 === strcasecmp(
+                                    substr($tz,0, strlen($_REQUEST['q'])),
+                                    $_REQUEST['q'])
+                    ) {
+                        $ret[] = array('tz' => $tz);
+                    }
+                    
+                }
+                $this->jdata($ret);
+                
+                
+                
              
                 
         }
-        
+        if (!empty($_REQUEST['debug'])) {
+            DB_DataObject::debugLevel(1);
+        }
         $i = DB_DataObject::Factory('I18n');
         $i->buildDb();