[+] Classes: add local cache system

This commit is contained in:
rMalie
2011-11-29 09:55:21 +00:00
parent 727b540ce2
commit cf7301884c
3 changed files with 35 additions and 14 deletions
+1 -7
View File
@@ -134,13 +134,7 @@ class AddressCore extends ObjectModel
/* Get and cache address country name */
if ($this->id)
{
$result = Db::getInstance()->getRow('
SELECT `name` FROM `'._DB_PREFIX_.'country_lang`
WHERE `id_country` = '.(int)$this->id_country.'
AND `id_lang` = '.($id_lang ? (int)$id_lang : Configuration::get('PS_LANG_DEFAULT')));
$this->country = $result['name'];
}
$this->country = Country::getNameById($id_lang ? $id_lang : Configuration::get('PS_LANG_DEFAULT'), $this->id_country);
}
public function add($autodate = true, $null_values = false)