X-Git-Url: http://git.roojs.org/?a=blobdiff_plain;f=DataObjects%2FI18n.php;h=4d45cd74faebcd96d7debdf41a7f0be45458b698;hb=0074c71542d96bd36645299bd4b3a8eeba492467;hp=b3c17303f16f9bcf576177f2233512f261bc1f75;hpb=defbc8533ba61439a9cce50e935acaa8aeed4565;p=Pman.Core diff --git a/DataObjects/I18n.php b/DataObjects/I18n.php index b3c17303..4d45cd74 100644 --- a/DataObjects/I18n.php +++ b/DataObjects/I18n.php @@ -127,10 +127,20 @@ class Pman_Core_DataObjects_I18n extends DB_DataObject $this->buildDB(); // ensure we have the full database... $this->selectAdd(" + id as id, i18n_translate(ltype, lkey, 'en') as lval_en - "); } + if (!empty($q['_as_code_and_title'])) { + $this->selectAdd(); + $this->selectAdd(" + {$tn}.lval as title, + {$tn}.lkey as code + "); + if (!empty($q['_title'])) { + $this->whereAdd("{$tn}.lval like '{$this->escape($_REQUEST['_title'])}%'"); + } + } if (!empty($q['!code'])) { $this->whereAddIn('!lkey', explode(',', $q['!code']), 'string'); @@ -141,6 +151,10 @@ class Pman_Core_DataObjects_I18n extends DB_DataObject $this->whereAdd("upper(lval) LIKE '%{$v}%'"); } + if (!empty($q['query']['name_starts'])) { + $this->whereAdd("lval LIKE '". $this->escape($q['query']['name_starts']). "%'"); + } + if (!empty($q['_filtered']) && !empty($this->ltype)) { $cfg = $this->cfg(); $filter = $cfg[$this->ltype]; @@ -149,8 +163,60 @@ class Pman_Core_DataObjects_I18n extends DB_DataObject } } + + if(!empty($q['_with_geoip_count'])) { + + $this->selectAdd(" + ( + SELECT + COUNT(geoip_division.id) + FROM + geoip_division + WHERE + geoip_division.country = i18n.lkey + ) AS no_of_division, + ( + SELECT + COUNT(geoip_city.id) + FROM + geoip_city + WHERE + geoip_city.country = i18n.lkey + ) AS no_of_city + "); + } + + if(!empty($q['_hide_unused'])) { + $this->whereAdd(" + ( + SELECT + COUNT(geoip_division.id) + FROM + geoip_division + WHERE + geoip_division.country = i18n.lkey + ) > 0 + "); + } } + function lookupCode($inlang,$ltype,$name) + { + $x = DB_DataObject::factory('i18n'); + $x->ltype = $ltype; + $x->lval = $name; + $x->inlang= $inlang; + + $x->limit(1); + if ($x->find(true) && !empty($x->lkey)) { + return $x->lkey; + } + return ''; + + + } + + function translate($inlang,$ltype,$kval) {