* @copyright 2007-2011 PrestaShop SA * @version Release: $Revision: 7540 $ * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) * International Registered Trademark & Property of PrestaShop SA */ class ProfileCore extends ObjectModel { /** @var string Name */ public $name; protected $fieldsRequiredLang = array('name'); protected $fieldsSizeLang = array('name' => 32); protected $fieldsValidateLang = array('name' => 'isGenericName'); protected $table = 'profile'; protected $identifier = 'id_profile'; public function getFields() { return array('id_profile' => $this->id); } /** * Check then return multilingual fields for database interaction * * @return array Multilingual fields */ public function getTranslationsFieldsChild() { parent::validateFieldsLang(); return parent::getTranslationsFields(array('name')); } /** * Get all available profiles * * @return array Profiles */ public static function getProfiles($id_lang) { return Db::getInstance(_PS_USE_SQL_SLAVE_)->ExecuteS(' SELECT p.`id_profile`, `name` FROM `'._DB_PREFIX_.'profile` p LEFT JOIN `'._DB_PREFIX_.'profile_lang` pl ON (p.`id_profile` = pl.`id_profile` AND `id_lang` = '.(int)($id_lang).') ORDER BY `name` ASC'); } /** * Get the current profile name * * @return string Profile */ public static function getProfile($id_profile, $id_lang = NULL) { if ($id_lang == NULL) $id_lang = Configuration::get('PS_LANG_DEFAULT'); return Db::getInstance(_PS_USE_SQL_SLAVE_)->getRow(' SELECT `name` FROM `'._DB_PREFIX_.'profile` p LEFT JOIN `'._DB_PREFIX_.'profile_lang` pl ON (p.`id_profile` = pl.`id_profile`) WHERE p.`id_profile` = '.(int)($id_profile).' AND pl.`id_lang` = '.(int)($id_lang)); } public function add($autodate = true, $nullValues = false) { if (parent::add($autodate, true)) return Db::getInstance()->Execute('INSERT INTO '._DB_PREFIX_.'access (SELECT '.(int)($this->id).', id_tab, 0, 0, 0, 0 FROM '._DB_PREFIX_.'tab)'); return false; } public function delete() { if (parent::delete()) return Db::getInstance()->Execute('DELETE FROM `'._DB_PREFIX_.'access` WHERE `id_profile` = '.(int)($this->id)); return false; } public static function getProfileAccess($id_profile, $id_tab) { // getProfileAccesses is cached so there is no performance leak $accesses = self::getProfileAccesses($id_profile); return (isset($accesses[$id_tab]) ? $accesses[$id_tab] : false); } private static $_cache_accesses = array(); public static function getProfileAccesses($id_profile) { if (!isset(self::$_cache_accesses[$id_profile])) { $result = Db::getInstance()->ExecuteS(' SELECT * FROM `'._DB_PREFIX_.'access` WHERE `id_profile` = '.(int)$id_profile); self::$_cache_accesses[$id_profile] = array(); foreach($result AS $row) { if (!isset(self::$_cache_accesses[$id_profile][$row['id_tab']])) self::$_cache_accesses[$id_profile][$row['id_tab']] = array(); self::$_cache_accesses[$id_profile][$row['id_tab']] = $row; } } return self::$_cache_accesses[$id_profile]; } }