Pman/I18N.php
[Pman.Base] / Pman / I18N.php
index 5e0fb60..a0bc9c9 100644 (file)
@@ -13,20 +13,6 @@ class Pman_I18N extends Pman_Core_I18n
      
     
     
-    function getAuth()
-    {
-        parent::getAuth(); // load company!
-        //return true;
-        $au = $this->getAuthUser();
-        //if (!$au) {
-        //    $this->jerr("Not authenticated", array('authFailure' => true));
-        //}
-        $this->authUser = $au;
-         
-         
-        return true;
-    }
-    // returns a list of all countries..
      
     
     
@@ -47,118 +33,6 @@ class Pman_I18N extends Pman_Core_I18n
         
     }
       
-    function getList($type, $inlang,$fi=false)
-    {
-        //$l = new I18Nv2_Language($inlang);
-        //$c= new I18Nv2_Country($inlang);
-        $filter = !$fi  ? false :  $this->loadFilter($type); // project specific languages..
-       // print_r($filter);
-        
-        $ret = array();
-        
-        
-        
-        
-        foreach($this->cfg[$type] as $k) {
-            if (is_array($filter) && !in_array($k, $filter)) {
-                continue;
-            }
-             
-            $ret[] = array(
-                'code'=>$k , 
-                'title' => $this->translate($inlang, $type, $k)
-            );
-            continue;
-            
-        }
-        // sort it??
-        return $ret;
-        
-    }
-     
-     
-    function get($s)
-    {
-        if (empty($s)) {
-            die('no type');
-        }
-        
-        $lbits = $this->findLang();
-         
-        
-        
-        
-        switch($s) {
-            case 'Lang': 
-                $ret = $this->getList('l', $lbits[0],empty($_REQUEST['filter']) ? false : $_REQUEST['filter']);
-                break;
-
-            case 'Country':
-                $ret = $this->getList('c', $lbits[0],empty($_REQUEST['filter']) ? false : $_REQUEST['filter']);
-                break;
-                
-             case 'Currency':
-                $ret = $this->getList('m', $lbits[0],empty($_REQUEST['filter']) ? false : $_REQUEST['filter']);
-                break;
-            // part of parent!!!!
-            /*
-            case 'BuildDB':
-            // by admin only?!?
-                //DB_DataObject::debugLevel(1);
-                $this->buildDb('l');
-                $this->buildDb('c');
-                $this->buildDb('m');
-                die("DONE!");
-                break;
-            */      
-            default: 
-                $this->jerr("ERROR");
-        }
-         
-        $this->jdata($ret);
-        exit;
-        
-    }
-    function loadFilter($type)
-    {
-        // this code only applies to Clipping module
-        if (!$this->authUser) {
-            return false;
-        }
-        
-        // this needs moving to it's own project
-        
-        if (!$this->hasModule('Clipping')) {
-            return false;
-        }
-        if ($type == 'm') {
-            return false;
-        }
-        
-        //DB_DataObject::debugLevel(1);
-        $q = DB_DataObject::factory('Projects');
-        
-        $c = DB_Dataobject::factory('Companies');
-        $c->get($this->authUser->company_id);
-        if ($c->comptype !='OWNER') {
-            $q->client_id = $this->authUser->company_id;
-        }
-        $q->selectAdd();
-        $col = ($type == 'l' ? 'languages' : 'countries');
-        $q->selectAdd('distinct(' . ($type == 'l' ? 'languages' : 'countries').') as dval');
-        $q->whereAdd("LENGTH($col) > 0");
-        $q->find();
-        $ret = array();
-        $ret['**'] = 1;
-        while ($q->fetch()) {
-            $bits = explode(',', $q->dval);
-            foreach($bits as $k) {
-                $ret[$k] = true;
-            }
-        }
-        return array_keys($ret);
-        
-    }
    
      
     function translateList($au, $type, $k)