/home/sharedstore/public_html/prestashop.sharedstore.ma/classes
NameSizeModeActions
assets/-0755rm
cache/-0755rm
checkout/-0755rm
container/-0755rm
controller/-0755rm
db/-0755rm
exception/-0755rm
form/-0755rm
helper/-0755rm
lang/-0755rm
log/-0755rm
module/-0755rm
order/-0755rm
pdf/-0755rm
product/-0755rm
proxy/-0755rm
range/-0755rm
shop/-0755rm
Smarty/-0755rm
stock/-0755rm
tax/-0755rm
tree/-0755rm
webservice/-0755rm
.htaccess1700644editdlrm
Access.php135730644editdlrm
Address.php230160644editdlrm
AddressChecksumCore.php18510644editdlrm
AddressFormat.php251250644editdlrm
Alias.php51060644editdlrm
Attachment.php115570644editdlrm
AttributeGroup.php134880644editdlrm
Carrier.php656660644editdlrm
Cart.php2211920644editdlrm
CartRule.php927650644editdlrm
Category.php891710644editdlrm
Chart.php41770644editdlrm
ChecksumInterface.php12460644editdlrm
CMS.php117250644editdlrm
CMSCategory.php241480644editdlrm
CMSRole.php18220644editdlrm
Combination.php180120644editdlrm
Configuration.php271560644editdlrm
ConfigurationKPI.php91260644editdlrm
ConfigurationTest.php123090644editdlrm
Connection.php102620644editdlrm
ConnectionsSource.php49260644editdlrm
Contact.php39540644editdlrm
Context.php183720644editdlrm
Cookie.php178060644editdlrm
Country.php167230644editdlrm
CSV.php31100644editdlrm
Currency.php371670644editdlrm
Curve.php29930644editdlrm
Customer.php535760644editdlrm
CustomerAddress.php12950644editdlrm
CustomerMessage.php58900644editdlrm
CustomerSession.php27180644editdlrm
CustomerThread.php98480644editdlrm
Customization.php137540644editdlrm
CustomizationField.php29150644editdlrm
DateRange.php25320644editdlrm
Delivery.php33170644editdlrm
Dispatcher.php488100644editdlrm
Employee.php240620644editdlrm
EmployeeSession.php27180644editdlrm
Feature.php116560644editdlrm
FeatureFlag.php32260644editdlrm
FeatureValue.php82490644editdlrm
FileUploader.php38200644editdlrm
Gender.php28760644editdlrm
Group.php153230644editdlrm
GroupReduction.php90250644editdlrm
Guest.php85290644editdlrm
Hook.php509090644editdlrm
Image.php324180644editdlrm
ImageManager.php325490644editdlrm
ImageType.php71550644editdlrm
index.php13720644editdlrm
Language.php635470644editdlrm
Link.php638140644editdlrm
LocalizationPack.php236040644editdlrm
Mail.php343120644editdlrm
Manufacturer.php217450644editdlrm
ManufacturerAddress.php13110644editdlrm
Media.php330210644editdlrm
Message.php66260644editdlrm
Meta.php185770644editdlrm
Notification.php84700644editdlrm
ObjectModel.php837730644editdlrm
Pack.php263320644editdlrm
Page.php45980644editdlrm
PaymentFree.php13620644editdlrm
PaymentModule.php611970644editdlrm
PhpEncryption.php32910644editdlrm
PhpEncryptionEngine.php39490644editdlrm
PrestaShopAutoload.php97990644editdlrm
PrestaShopBackup.php117020644editdlrm
PrestaShopCollection.php217900644editdlrm
PrestaShopLogger.php85230644editdlrm
Product.php3180560644editdlrm
ProductAssembler.php68950644editdlrm
ProductAttribute.php138080644editdlrm
ProductDownload.php102940644editdlrm
ProductPresenterFactory.php39830644editdlrm
ProductSale.php130000644editdlrm
ProductSupplier.php85370644editdlrm
Profile.php85230644editdlrm
QqUploadedFileForm.php53170644editdlrm
QqUploadedFileXhr.php58250644editdlrm
QuickAccess.php64020644editdlrm
RequestSql.php214530644editdlrm
Risk.php24190644editdlrm
Search.php592290644editdlrm
SearchEngine.php28790644editdlrm
SpecificPrice.php332120644editdlrm
SpecificPriceRule.php143740644editdlrm
State.php79560644editdlrm
Store.php63940644editdlrm
Supplier.php183390644editdlrm
SupplierAddress.php12990644editdlrm
Tab.php222230644editdlrm
Tag.php135580644editdlrm
Tools.php1409030644editdlrm
Translate.php120590644editdlrm
TranslatedConfiguration.php47920644editdlrm
Upgrader.php118590644editdlrm
Uploader.php111040644editdlrm
Validate.php398010644editdlrm
ValidateConstraintTranslator.php26110644editdlrm
WarehouseAddress.php13020644editdlrm
Zone.php35000644editdlrm
Edit: /home/sharedstore/public_html/prestashop.sharedstore.ma/classes/Tab.php (22223B)
* @copyright Since 2007 PrestaShop SA and Contributors * @license https://opensource.org/licenses/OSL-3.0 Open Software License (OSL 3.0) */ /** * Class TabCore. */ class TabCore extends ObjectModel { /** @var string|array Displayed name */ public $name; /** @var string Class and file name */ public $class_name; /** @var string Route name for Symfony */ public $route_name; public $module; /** @var int parent ID */ public $id_parent; /** @var int position */ public $position; /** @var bool active */ public $active = true; /** @var bool enabled */ public $enabled = true; /** @var string Icon font */ public $icon; /** @var string|null Wording to use for the display name */ public $wording; /** @var string|null Wording domain to use for the display name */ public $wording_domain; /** * @deprecated Since 1.7.7 */ public const TAB_MODULE_LIST_URL = ''; /** * @see ObjectModel::$definition */ public static $definition = [ 'table' => 'tab', 'primary' => 'id_tab', 'multilang' => true, 'fields' => [ 'id_parent' => ['type' => self::TYPE_INT, 'validate' => 'isInt'], 'position' => ['type' => self::TYPE_INT, 'validate' => 'isUnsignedInt'], 'module' => ['type' => self::TYPE_STRING, 'validate' => 'isTabName', 'size' => 64], 'class_name' => ['type' => self::TYPE_STRING, 'required' => true, 'size' => 64], 'route_name' => ['type' => self::TYPE_STRING, 'required' => false, 'size' => 256], 'active' => ['type' => self::TYPE_BOOL, 'validate' => 'isBool'], 'enabled' => ['type' => self::TYPE_BOOL, 'validate' => 'isBool'], 'icon' => ['type' => self::TYPE_STRING, 'size' => 64], 'wording' => ['type' => self::TYPE_STRING, 'validate' => 'isString', 'allow_null' => true, 'size' => 255], 'wording_domain' => ['type' => self::TYPE_STRING, 'validate' => 'isString', 'allow_null' => true, 'size' => 255], /* Lang fields */ 'name' => ['type' => self::TYPE_STRING, 'lang' => true, 'required' => true, 'validate' => 'isTabName', 'size' => 64], ], ]; protected static $_getIdFromClassName = null; /** * Additional treatments for Tab when creating new one: * - generate a new position * - add access for admin profile. * * @param bool $autoDate * @param bool $nullValues * * @return bool true if success */ public function add($autoDate = true, $nullValues = false) { self::$_cache_tabs = []; // Set good position for new tab $this->position = Tab::getNewLastPosition($this->id_parent); $this->module = Tools::strtolower($this->module); // Add tab if (parent::add($autoDate, $nullValues)) { //forces cache to be reloaded self::$_getIdFromClassName = null; return Tab::initAccess($this->id); } return false; } /** * @param bool $nullValues * @param bool $autoDate * * @return bool */ public function save($nullValues = false, $autoDate = true) { self::$_getIdFromClassName = null; return parent::save(); } /** When creating a new tab $id_tab, this add default rights to the table access * * @todo this should not be public static but protected * * @param int $idTab * @param Context $context * * @return bool true if succeed */ public static function initAccess($idTab, Context $context = null) { if (!$context) { $context = Context::getContext(); } /* Right management */ $slug = 'ROLE_MOD_TAB_' . strtoupper(self::getClassNameById($idTab)); foreach (['CREATE', 'READ', 'UPDATE', 'DELETE'] as $action) { /* * Check if authorization role does not exist. * This can happen if you want to create several tabs with the same class_name or route_name */ $actionSlug = pSQL($slug . '_' . $action); $authorizationRole = Db::getInstance()->getRow( 'SELECT slug FROM `' . _DB_PREFIX_ . 'authorization_role` ' . 'WHERE `slug` = "' . $actionSlug . '"' ); if (empty($authorizationRole)) { Db::getInstance()->execute( 'INSERT INTO `' . _DB_PREFIX_ . 'authorization_role` (`slug`) VALUES ("' . $actionSlug . '")' ); } } $access = new Access(); foreach (['view', 'add', 'edit', 'delete'] as $action) { $access->updateLgcAccess(1, $idTab, $action, true); if ($context->employee && $context->employee->id_profile) { $access->updateLgcAccess($context->employee->id_profile, $idTab, $action, true); } } return true; } public function delete() { if (parent::delete()) { $slug = 'ROLE_MOD_TAB_' . strtoupper($this->class_name); foreach (['CREATE', 'READ', 'UPDATE', 'DELETE'] as $action) { Db::getInstance()->execute('DELETE FROM `' . _DB_PREFIX_ . 'authorization_role` WHERE `slug` = "' . $slug . '_' . $action . '"'); } if (is_array(self::$_getIdFromClassName) && isset(self::$_getIdFromClassName[strtolower($this->class_name)])) { self::$_getIdFromClassName = null; } return $this->cleanPositions($this->id_parent); } return false; } /** * reset static cache (eg unit testing purpose). */ public static function resetStaticCache() { self::$_getIdFromClassName = null; } public static function resetTabCache() { self::$_cache_tabs = []; } /** * Get tab id. * * @return int tab id */ public static function getCurrentTabId() { $idTab = Tab::getIdFromClassName(Tools::getValue('controller')); // retro-compatibility 1.4/1.5 if (empty($idTab)) { $idTab = Tab::getIdFromClassName(Tools::getValue('tab')); } return $idTab; } /** * Get tab parent id. * * @return int tab parent id */ public static function getCurrentParentId() { $cacheId = 'getCurrentParentId_' . Tools::strtolower(Tools::getValue('controller')); if (!Cache::isStored($cacheId)) { $value = Db::getInstance(_PS_USE_SQL_SLAVE_)->getValue(' SELECT `id_parent` FROM `' . _DB_PREFIX_ . 'tab` WHERE LOWER(class_name) = \'' . pSQL(Tools::strtolower(Tools::getValue('controller'))) . '\''); if (!$value) { $value = -1; } Cache::store($cacheId, $value); return $value; } return Cache::retrieve($cacheId); } /** * Get tab. * * @return array tab */ public static function getTab($idLang, $idTab) { $cacheId = 'Tab::getTab_' . (int) $idLang . '-' . (int) $idTab; if (!Cache::isStored($cacheId)) { /* Tabs selection */ $result = Db::getInstance(_PS_USE_SQL_SLAVE_)->getRow( 'SELECT * FROM `' . _DB_PREFIX_ . 'tab` t LEFT JOIN `' . _DB_PREFIX_ . 'tab_lang` tl ON (t.`id_tab` = tl.`id_tab` AND tl.`id_lang` = ' . (int) $idLang . ') WHERE t.`id_tab` = ' . (int) $idTab ); Cache::store($cacheId, $result); return $result; } return Cache::retrieve($cacheId); } /** * Return the list of tab used by a module. * * @return array */ public static function getModuleTabList() { $list = []; $result = Db::getInstance(_PS_USE_SQL_SLAVE_)->executeS(' SELECT t.`class_name`, t.`module` FROM `' . _DB_PREFIX_ . 'tab` t WHERE t.`module` IS NOT NULL AND t.`module` != ""'); if (is_array($result)) { foreach ($result as $detail) { $list[strtolower($detail['class_name'])] = $detail; } } return $list; } /** * Get tabs. * * @return array tabs */ protected static $_cache_tabs = []; public static function getTabs($idLang, $idParent = null) { if (!isset(self::$_cache_tabs[$idLang])) { self::$_cache_tabs[$idLang] = []; // Keep t.*, tl.name instead of only * because if translations are missing, the join on tab_lang will overwrite the id_tab in the results $result = Db::getInstance(_PS_USE_SQL_SLAVE_)->executeS( ' SELECT t.*, tl.name FROM `' . _DB_PREFIX_ . 'tab` t LEFT JOIN `' . _DB_PREFIX_ . 'tab_lang` tl ON (t.`id_tab` = tl.`id_tab` AND tl.`id_lang` = ' . (int) $idLang . ') ORDER BY t.`position` ASC' ); if (is_array($result)) { foreach ($result as $row) { if (!isset(self::$_cache_tabs[$idLang][$row['id_parent']])) { self::$_cache_tabs[$idLang][$row['id_parent']] = []; } self::$_cache_tabs[$idLang][$row['id_parent']][] = $row; } } } if ($idParent === null) { $arrayAll = []; foreach (self::$_cache_tabs[$idLang] as $arrayParent) { $arrayAll = array_merge($arrayAll, $arrayParent); } return $arrayAll; } return isset(self::$_cache_tabs[$idLang][$idParent]) ? self::$_cache_tabs[$idLang][$idParent] : []; } /** * Get tab id from name. * * @deprecated since version 1.7.1.0, available now in PrestaShopBundle\Entity\Repository\TabRepository::findOneIdByClassName($className) * * @param string $className * * @return int Tab ID */ public static function getIdFromClassName($className) { $className = self::getClassName($className); if (empty(self::$_getIdFromClassName)) { self::$_getIdFromClassName = []; $result = Db::getInstance(_PS_USE_SQL_SLAVE_)->executeS('SELECT id_tab, class_name FROM `' . _DB_PREFIX_ . 'tab`', true, false); if (is_array($result)) { foreach ($result as $row) { self::$_getIdFromClassName[strtolower($row['class_name'])] = $row['id_tab']; } } } return isset(self::$_getIdFromClassName[$className]) ? (int) self::$_getIdFromClassName[$className] : false; } /** * @deprecated 1.7.0, to be removed in 1.7.1. Upgrade module to 1.7. */ private static function getClassName($className) { $legacyClassNames = [ 'AdminTools', 'AdminPriceRule', 'AdminAdmin', 'AdminParentStats', 'AdminMarketing', 'AdminCarrierWizard', 'AdminTabs', ]; if (in_array($className, $legacyClassNames)) { @trigger_error($className . ' is a deprecated tab since version 1.7.0 and "Default" will be removed in 1.7.1.. Upgrade module using the docs: http://build.prestashop.com/news/how-we-reorganized-main-menu-prestashop-1.7/.', E_USER_DEPRECATED); $className = 'DEFAULT'; } return strtolower($className); } /** * Get collection from module name. * * @param string $module Module name * @param int|null $idLang integer Language ID * * @return array|PrestaShopCollection Collection of tabs (or empty array) */ public static function getCollectionFromModule($module, $idLang = null) { if (null === $idLang) { $idLang = Context::getContext()->language->id; } if (!Validate::isModuleName($module)) { return []; } $tabs = new PrestaShopCollection('Tab', (int) $idLang); $tabs->where('module', '=', $module); return $tabs; } /** * Enabling tabs for module. * * @param string $module Module Name * * @return bool Status */ public static function enablingForModule($module) { $tabs = Tab::getCollectionFromModule($module); if (!empty($tabs)) { foreach ($tabs as $tab) { $tab->active = 1; $tab->save(); } return true; } return false; } /** * Disabling tabs for module. * * @param string $module Module name * * @return bool Status */ public static function disablingForModule($module) { $tabs = Tab::getCollectionFromModule($module); if (!empty($tabs)) { foreach ($tabs as $tab) { $tab->active = 0; $tab->save(); } return true; } return false; } /** * Get Instance from tab class name. * * @param string $className Name of tab class * @param int|null $idLang id_lang * * @return Tab Tab object (empty if bad id or class name) */ public static function getInstanceFromClassName($className, $idLang = null) { $idTab = (int) Tab::getIdFromClassName($className); return new Tab($idTab, $idLang); } public static function getNbTabs($idParent = null) { return (int) Db::getInstance()->getValue( ' SELECT COUNT(*) FROM `' . _DB_PREFIX_ . 'tab` t ' . (null !== $idParent ? 'WHERE t.`id_parent` = ' . (int) $idParent : '') ); } /** * return an available position in subtab for parent $id_parent. * * @param mixed $idParent * * @return int */ public static function getNewLastPosition($idParent) { return (int) Db::getInstance()->getValue( 'SELECT IFNULL(MAX(position), 0) + 1 FROM `' . _DB_PREFIX_ . 'tab` WHERE `id_parent` = ' . (int) $idParent ); } public function move($direction) { $nbTabs = Tab::getNbTabs($this->id_parent); if ($direction != 'l' && $direction != 'r') { return false; } if ($nbTabs <= 1) { return false; } if ($direction == 'l' && $this->position <= 1) { return false; } if ($direction == 'r' && $this->position >= $nbTabs) { return false; } $newPosition = ($direction == 'l') ? $this->position - 1 : $this->position + 1; Db::getInstance()->execute( ' UPDATE `' . _DB_PREFIX_ . 'tab` t SET position = ' . (int) $this->position . ' WHERE id_parent = ' . (int) $this->id_parent . ' AND position = ' . (int) $newPosition ); $this->position = $newPosition; return $this->update(); } /** * Clean positions. * * @param int $idParent Parent ID * * @return bool */ public function cleanPositions($idParent) { $result = Db::getInstance()->executeS(' SELECT `id_tab` FROM `' . _DB_PREFIX_ . 'tab` WHERE `id_parent` = ' . (int) $idParent . ' ORDER BY `position` '); $sizeof = count($result); for ($i = 0; $i < $sizeof; ++$i) { Db::getInstance()->execute( ' UPDATE `' . _DB_PREFIX_ . 'tab` SET `position` = ' . ($i + 1) . ' WHERE `id_tab` = ' . (int) $result[$i]['id_tab'] ); } return true; } /** * Update position. * * @param bool $way * @param int $position * * @return bool */ public function updatePosition($way, $position) { if (!$res = Db::getInstance()->executeS( ' SELECT t.`id_tab`, t.`position`, t.`id_parent` FROM `' . _DB_PREFIX_ . 'tab` t WHERE t.`id_parent` = ' . (int) $this->id_parent . ' ORDER BY t.`position` ASC' )) { return false; } foreach ($res as $tab) { if ((int) $tab['id_tab'] == (int) $this->id) { $movedTab = $tab; } } if (!isset($movedTab)) { return false; } // < and > statements rather than BETWEEN operator // since BETWEEN is treated differently according to databases $result = (Db::getInstance()->execute(' UPDATE `' . _DB_PREFIX_ . 'tab` SET `position`= `position` ' . ($way ? '- 1' : '+ 1') . ' WHERE `position` ' . ($way ? '> ' . (int) $movedTab['position'] . ' AND `position` <= ' . (int) $position : '< ' . (int) $movedTab['position'] . ' AND `position` >= ' . (int) $position) . ' AND `id_parent`=' . (int) $movedTab['id_parent']) && Db::getInstance()->execute(' UPDATE `' . _DB_PREFIX_ . 'tab` SET `position` = ' . (int) $position . ' WHERE `id_parent` = ' . (int) $movedTab['id_parent'] . ' AND `id_tab`=' . (int) $movedTab['id_tab'])); return $result; } /** * Check Tab rights. * * @param int $idTab Tab ID * * @return bool Current employee has access to tab */ public static function checkTabRights($idTab) { static $tabAccesses = null; if (Context::getContext()->employee->id_profile == _PS_ADMIN_PROFILE_) { return true; } if ($tabAccesses === null) { $tabAccesses = Profile::getProfileAccesses(Context::getContext()->employee->id_profile); } if (isset($tabAccesses[(int) $idTab]['view'])) { return $tabAccesses[(int) $idTab]['view'] === '1'; } return false; } public static function recursiveTab($idTab, $tabs) { $adminTab = Tab::getTab((int) Context::getContext()->language->id, $idTab); $tabs[] = $adminTab; if (!empty($adminTab['id_parent'])) { $tabs = Tab::recursiveTab($adminTab['id_parent'], $tabs); } return $tabs; } /** * Overrides update to set position to last when changing parent tab. * * @see ObjectModel::update * * @param bool $nullValues * * @return bool */ public function update($nullValues = false) { $current_tab = new Tab($this->id); if ($current_tab->id_parent != $this->id_parent) { $this->position = Tab::getNewLastPosition($this->id_parent); } self::$_cache_tabs = []; return parent::update($nullValues); } /** * Get Tab by Profile ID. * * @param int $idParent * @param int $idProfile * * @return array|false|mysqli_result|PDOStatement|resource|null */ public static function getTabByIdProfile($idParent, $idProfile) { return Db::getInstance()->executeS(' SELECT t.`id_tab`, t.`id_parent`, tl.`name`, a.`id_profile` FROM `' . _DB_PREFIX_ . 'tab` t LEFT JOIN `' . _DB_PREFIX_ . 'access` a ON (a.`id_tab` = t.`id_tab`) LEFT JOIN `' . _DB_PREFIX_ . 'tab_lang` tl ON (t.`id_tab` = tl.`id_tab` AND tl.`id_lang` = ' . (int) Context::getContext()->language->id . ') WHERE a.`id_profile` = ' . (int) $idProfile . ' AND t.`id_parent` = ' . (int) $idParent . ' AND a.`view` = 1 AND a.`edit` = 1 AND a.`delete` = 1 AND a.`add` = 1 AND t.`id_parent` != 0 AND t.`id_parent` != -1 ORDER BY t.`id_parent` ASC '); } /** * @since 1.5.0 */ public static function getClassNameById($idTab) { return Db::getInstance()->getValue('SELECT class_name FROM ' . _DB_PREFIX_ . 'tab WHERE id_tab = ' . (int) $idTab); } public static function getTabModulesList($idTab) { $modulesList = ['default_list' => [], 'slider_list' => []]; if (!Tools::isFileFresh(Module::CACHE_FILE_TAB_MODULES_LIST, Tools::CACHE_LIFETIME_SECONDS)) { Tools::refreshFile(Module::CACHE_FILE_TAB_MODULES_LIST, _PS_TAB_MODULE_LIST_URL_); } $xmlTabModulesList = @simplexml_load_file(_PS_ROOT_DIR_ . Module::CACHE_FILE_TAB_MODULES_LIST); $className = null; $displayType = 'default_list'; if ($xmlTabModulesList) { foreach ($xmlTabModulesList->tab as $tab) { foreach ($tab->attributes() as $key => $value) { if ($key == 'class_name') { $className = (string) $value; } } if (Tab::getIdFromClassName((string) $className) == $idTab) { foreach ($tab->attributes() as $key => $value) { if ($key == 'display_type') { $displayType = (string) $value; } } foreach ($tab->children() as $module) { $modulesList[$displayType][(int) $module['position']] = (string) $module['name']; } ksort($modulesList[$displayType]); } } } return $modulesList; } }