array( 'l' => array( 'en', 'zh_CN', 'zh_HK', 'zh_TW', 'th', 'ko', 'ja', 'ms', 'id', // indonesian 'tl', // tagalog 'vi', //vietnamise 'hi', // hindi 'ta', // tamil '**', // other ), 'c' => '*', // eg. all languages.. 'm' => array( 'USD', 'HKD', 'GBP', 'CNY', 'SGD', 'JPY' ) ), * */ require_once 'Pman.php'; class Pman_Core_I18N extends Pman { // these are the default languages we support. // they will allways be overlaid with the current configuration (via getAuth) // THESE WILL ALLWAYS BE UPPERCASE!!! var $cfg = array( // translated versions availalable 't' => array( 'en', 'zh_CN', 'zh_HK', ), // languages available 'l' => array( 'en', 'zh_CN', 'zh_HK', 'zh_TW', 'th', 'ko', 'ja', 'ms', 'id', // indonesian 'tl', // tagalog 'vi', //vietnamise 'hi', // hindi 'ta', // tamil '**', // other ), 'c' => array( 'AU', 'CN', 'HK', 'IN', 'ID', 'JP', 'MY', 'NZ', 'TW', 'SG', 'TH', 'KR', 'US', 'PH', 'VN','**' ), 'm' => array( 'USD', 'HKD', 'GBP', 'CNY', 'SGD', 'JPY' ) ); function getAuth() { parent::getAuth(); // load company! //return true; $au = $this->getAuthUser(); //if (!$au) { // $this->jerr("Not authenticated", array('authFailure' => true)); //} $this->authUser = $au; $ff= HTML_FlexyFramework::get(); $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.. $this->cfg[$k] = $i->availableCodes($k); continue; } $this->cfg[$k] = is_array($v) ? $v : explode(',', $v); } return true; } function get($s ='') { $i = DB_DataObject::Factory('I18n'); $i->buildDb(); $this->outputJavascript(); exit; } function outputJavascript() { require_once 'I18Nv2/Country.php'; require_once 'I18Nv2/Language.php'; require_once 'I18Nv2/Currency.php'; $langs = $this->cfg['t']; // var_dump($langs);exit; $ar = array(); foreach($langs as $lang) { $rlang = array_shift(explode('_', strtoupper($lang))); $ar[$lang] = array( 'l' => $this->objToList('l', new I18Nv2_Language($rlang, 'UTF-8')), 'c' => $this->objToList('c', new I18Nv2_Country($rlang, 'UTF-8')), 'm' => $this->objToList('m', new I18Nv2_Currency($rlang, 'UTF-8')) ); } //echo '
';print_r($ar);
        header('Content-type: text/javascript');
        echo 'Pman.I18n.Data = ' .  json_encode($ar);
        exit;
        
        
        
    }
    function objToList($type, $obj) {
        $ret = array();
         
         
        foreach($this->cfg[$type] as $k) {
            $sub = false;
            
            if (strpos($k, '_') !== false) {
                $bits = explode('_', $k);
                $k = array_shift($bits);
                $sub = array_shift($bits);
            }
            $v = $k == '**' ? 'Other' : $obj->getName($k);
            
            if ($sub) {
                $v .= ' ('.$sub.')';
            }
            
            $ret[] = array(
                'code'=>   ($type=='l' ? strtolower($k) : strtoupper($k)) . ($sub ? '_'.strtoupper($sub) : ''), 
                'title' => $v
            );
        }
        return $ret;
    }
    
     /**
     * translate (used by database building);
     * usage :
     * require_once 'Pman/Core/I18N.php';
     * $x = new Pman_Core_I18N();
     * $x->translate($this->authuser, 'c', 'US');
     * @param au - auth User
     * @param type = 'c' or 'l'
     * @param k - key to translate
     * 
     */
     
    function translate($au, $type, $k) 
    {
      
        static $cache;
        if (empty($k)) {
            return '??';
        }
        $lang = !$au || empty($au->lang ) ? 'en' : is_string($au) ? $au : $au->lang;
        $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 '
';print_r(array($lang, $cache[$lang]['c']));
        }
        if ($k == '**') {
            return 'Other / Unknown';
        }
    
        
        if ($type == 'l') {
            $tolang = explode('_', $k);
         
            $ret = $cache[$lang][$type]->getName($tolang[0]);
            if (count($tolang) > 1) {
                $ret.= '('.$tolang[1].')'; 
            }
            return $ret;
        }
        $ret = $cache[$lang][$type]->getName($k);
        //print_r(array($k, $ret));
        return $ret;
        
        
    }
     
    
}