X-Git-Url: http://git.roojs.org/?a=blobdiff_plain;f=DataObjects%2FI18n.php;h=366143306879b3c34b7a27daa116048cded4d11b;hb=750b54e82dd8dd021d19a8e5a3ea04e788689fd8;hp=37c942467806e284cb4b84e8dccae3f47d2d3080;hpb=7f3622443330c59c4c8cb2a8d8d399d14719cabe;p=Pman.Core diff --git a/DataObjects/I18n.php b/DataObjects/I18n.php index 37c94246..36614330 100644 --- a/DataObjects/I18n.php +++ b/DataObjects/I18n.php @@ -7,7 +7,7 @@ * It should eventually replace most of that.. * */ -require_once 'DB/DataObject.php'; +class_exists('DB_DataObject') ? '' : require_once 'DB/DataObject.php'; class Pman_Core_DataObjects_I18n extends DB_DataObject { @@ -131,6 +131,10 @@ class Pman_Core_DataObjects_I18n extends DB_DataObject "); } + + if (!empty($q['!code'])) { + $this->whereAddIn('!lkey', explode(',', $q['!code']), 'string'); + } if (!empty($q['query']['name'])) { //DB_DAtaObject::debugLevel(1); $v = strtoupper($this->escape($q['query']['name'])); @@ -145,8 +149,48 @@ 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 + "); + + } + } + + 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) { @@ -290,7 +334,7 @@ class Pman_Core_DataObjects_I18n extends DB_DataObject $this->buildDB('c'); $this->buildDB('l'); $this->buildDB('m'); - $this->buildDB('p'); + $this->buildDB('p', 'en'); return; }