/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/Group.php (15323B)
* @copyright Since 2007 PrestaShop SA and Contributors * @license https://opensource.org/licenses/OSL-3.0 Open Software License (OSL 3.0) */ class GroupCore extends ObjectModel { public $id; /** @var string|array */ public $name; /** @var string Reduction */ public $reduction; /** @var int Price display method (tax inc/tax exc) */ public $price_display_method; /** @var bool Show prices */ public $show_prices = true; /** @var string Object creation date */ public $date_add; /** @var string Object last modification date */ public $date_upd; /** * @see ObjectModel::$definition */ public static $definition = [ 'table' => 'group', 'primary' => 'id_group', 'multilang' => true, 'fields' => [ 'reduction' => ['type' => self::TYPE_FLOAT, 'validate' => 'isFloat'], 'price_display_method' => ['type' => self::TYPE_INT, 'validate' => 'isPriceDisplayMethod', 'required' => true], 'show_prices' => ['type' => self::TYPE_BOOL, 'validate' => 'isBool'], 'date_add' => ['type' => self::TYPE_DATE, 'validate' => 'isDate'], 'date_upd' => ['type' => self::TYPE_DATE, 'validate' => 'isDate'], /* Lang fields */ 'name' => ['type' => self::TYPE_STRING, 'lang' => true, 'validate' => 'isGenericName', 'required' => true, 'size' => 32], ], ]; protected static $cache_reduction = []; protected static $group_price_display_method = []; protected static $ps_group_feature_active = null; protected static $groups = []; protected static $ps_unidentified_group = null; protected static $ps_customer_group = null; protected $webserviceParameters = []; public const PRICE_DISPLAY_METHOD_TAX_INCL = 0; public const PRICE_DISPLAY_METHOD_TAX_EXCL = 1; public function __construct($id = null, $id_lang = null, $id_shop = null) { parent::__construct($id, $id_lang, $id_shop); if ($this->id && !isset(Group::$group_price_display_method[$this->id])) { self::$group_price_display_method[$this->id] = $this->price_display_method; } } /** * WARNING: For testing only. Do NOT rely on this method, it may be removed at any time. */ public static function clearCachedValues() { self::$cache_reduction = []; self::$group_price_display_method = []; self::$ps_group_feature_active = null; self::$groups = []; self::$ps_unidentified_group = null; self::$ps_customer_group = null; } public static function getGroups($id_lang, $id_shop = false) { $shop_criteria = ''; if ($id_shop) { $shop_criteria = Shop::addSqlAssociation('group', 'g'); } return Db::getInstance(_PS_USE_SQL_SLAVE_)->executeS(' SELECT DISTINCT g.`id_group`, g.`reduction`, g.`price_display_method`, g.`show_prices`, gl.`name` FROM `' . _DB_PREFIX_ . 'group` g LEFT JOIN `' . _DB_PREFIX_ . 'group_lang` AS gl ON (g.`id_group` = gl.`id_group` AND gl.`id_lang` = ' . (int) $id_lang . ') ' . $shop_criteria . ' ORDER BY g.`id_group` ASC'); } public function getCustomers($count = false, $start = 0, $limit = 0, $shop_filtering = false) { if ($count) { return Db::getInstance()->getValue(' SELECT COUNT(*) FROM `' . _DB_PREFIX_ . 'customer_group` cg LEFT JOIN `' . _DB_PREFIX_ . 'customer` c ON (cg.`id_customer` = c.`id_customer`) WHERE cg.`id_group` = ' . (int) $this->id . ' ' . ($shop_filtering ? Shop::addSqlRestriction(Shop::SHARE_CUSTOMER) : '') . ' AND c.`deleted` != 1'); } return Db::getInstance()->executeS(' SELECT cg.`id_customer`, c.* FROM `' . _DB_PREFIX_ . 'customer_group` cg LEFT JOIN `' . _DB_PREFIX_ . 'customer` c ON (cg.`id_customer` = c.`id_customer`) WHERE cg.`id_group` = ' . (int) $this->id . ' AND c.`deleted` != 1 ' . ($shop_filtering ? Shop::addSqlRestriction(Shop::SHARE_CUSTOMER) : '') . ' ORDER BY cg.`id_customer` ASC ' . ($limit > 0 ? 'LIMIT ' . (int) $start . ', ' . (int) $limit : '')); } public static function getReduction($id_customer = null) { if (!isset(self::$cache_reduction['customer'][(int) $id_customer])) { $id_group = $id_customer ? Customer::getDefaultGroupId((int) $id_customer) : (int) Group::getCurrent()->id; self::$cache_reduction['customer'][(int) $id_customer] = Group::getReductionByIdGroup($id_group); } return self::$cache_reduction['customer'][(int) $id_customer]; } public static function getReductionByIdGroup($id_group) { if (!isset(self::$cache_reduction['group'][$id_group])) { self::$cache_reduction['group'][$id_group] = Db::getInstance(_PS_USE_SQL_SLAVE_)->getValue(' SELECT `reduction` FROM `' . _DB_PREFIX_ . 'group` WHERE `id_group` = ' . (int) $id_group); } return self::$cache_reduction['group'][$id_group]; } /** * Returns price display method for a group (i.e. price should be including tax or not). * * @param int $id_group * * @return int Returns 0 (PS_TAX_INC) if tax should be included, otherwise 1 (PS_TAX_EXC) - tax should be excluded */ public static function getPriceDisplayMethod($id_group) { if (!isset(Group::$group_price_display_method[$id_group])) { self::$group_price_display_method[$id_group] = (int) Db::getInstance(_PS_USE_SQL_SLAVE_)->getValue( ' SELECT `price_display_method` FROM `' . _DB_PREFIX_ . 'group` WHERE `id_group` = ' . (int) $id_group ); } return self::$group_price_display_method[$id_group]; } /** * Returns default price display method, i.e. for the 'Customers' group. * * @see getPriceDisplayMethod() * * @return int Returns 0 (PS_TAX_INC) if tax should be included, otherwise 1 (PS_TAX_EXC) - tax should be excluded */ public static function getDefaultPriceDisplayMethod() { return Group::getPriceDisplayMethod((int) Configuration::get('PS_CUSTOMER_GROUP')); } public function add($autodate = true, $null_values = false) { Configuration::updateGlobalValue('PS_GROUP_FEATURE_ACTIVE', '1'); if (parent::add($autodate, $null_values)) { Category::setNewGroupForHome((int) $this->id); Carrier::assignGroupToAllCarriers((int) $this->id); return true; } return false; } public function update($autodate = true, $null_values = false) { if (!Configuration::getGlobalValue('PS_GROUP_FEATURE_ACTIVE') && $this->reduction > 0) { Configuration::updateGlobalValue('PS_GROUP_FEATURE_ACTIVE', 1); } return parent::update($null_values); } public function delete() { if ($this->id == (int) Configuration::get('PS_CUSTOMER_GROUP')) { return false; } if (parent::delete()) { Db::getInstance()->execute('DELETE FROM `' . _DB_PREFIX_ . 'cart_rule_group` WHERE `id_group` = ' . (int) $this->id); Db::getInstance()->execute('DELETE FROM `' . _DB_PREFIX_ . 'customer_group` WHERE `id_group` = ' . (int) $this->id); Db::getInstance()->execute('DELETE FROM `' . _DB_PREFIX_ . 'category_group` WHERE `id_group` = ' . (int) $this->id); Db::getInstance()->execute('DELETE FROM `' . _DB_PREFIX_ . 'group_reduction` WHERE `id_group` = ' . (int) $this->id); Db::getInstance()->execute('DELETE FROM `' . _DB_PREFIX_ . 'product_group_reduction_cache` WHERE `id_group` = ' . (int) $this->id); $this->truncateModulesRestrictions($this->id); // Add default group (id 3) to customers without groups Db::getInstance()->execute('INSERT INTO `' . _DB_PREFIX_ . 'customer_group` ( SELECT c.id_customer, ' . (int) Configuration::get('PS_CUSTOMER_GROUP') . ' FROM `' . _DB_PREFIX_ . 'customer` c LEFT JOIN `' . _DB_PREFIX_ . 'customer_group` cg ON cg.id_customer = c.id_customer WHERE cg.id_customer IS NULL)'); // Set to the customer the default group // Select the minimal id from customer_group Db::getInstance()->execute('UPDATE `' . _DB_PREFIX_ . 'customer` cg SET id_default_group = IFNULL(( SELECT min(id_group) FROM `' . _DB_PREFIX_ . 'customer_group` WHERE id_customer = cg.id_customer), ' . (int) Configuration::get('PS_CUSTOMER_GROUP') . ') WHERE `id_default_group` = ' . (int) $this->id); // Remove group restrictions $res = Db::getInstance()->delete('module_group', 'id_group = ' . (int) $this->id); return $res; } return false; } /** * This method is allow to know if a feature is used or active. * * @since 1.5.0.1 * * @return bool */ public static function isFeatureActive() { if (self::$ps_group_feature_active === null) { self::$ps_group_feature_active = (bool) Configuration::get('PS_GROUP_FEATURE_ACTIVE'); } return self::$ps_group_feature_active; } /** * This method is allow to know if there are other groups than the default ones. * * @since 1.5.0.1 * * @param string|null $table Name of table linked to entity * @param bool $has_active_column True if the table has an active column * * @return bool */ public static function isCurrentlyUsed($table = null, $has_active_column = false) { return (bool) (Db::getInstance(_PS_USE_SQL_SLAVE_)->getValue('SELECT COUNT(*) FROM `' . _DB_PREFIX_ . 'group`') > 3); } /** * Truncate all modules restrictions for the group. * * @param int $id_group * * @return bool */ public static function truncateModulesRestrictions($id_group) { return Db::getInstance()->execute(' DELETE FROM `' . _DB_PREFIX_ . 'module_group` WHERE `id_group` = ' . (int) $id_group); } /** * Truncate all restrictions by module. * * @param int $id_module * * @return bool */ public static function truncateRestrictionsByModule($id_module) { return Db::getInstance()->execute(' DELETE FROM `' . _DB_PREFIX_ . 'module_group` WHERE `id_module` = ' . (int) $id_module); } /** * Adding restrictions modules to the group with id $id_group. * * @param int $id_group * @param array $modules * @param array $shops * * @return bool */ public static function addModulesRestrictions($id_group, $modules, $shops = [1]) { if (!is_array($modules) || !count($modules) || !is_array($shops) || !count($shops)) { return false; } // Delete all record for this group Db::getInstance()->execute( 'DELETE FROM `' . _DB_PREFIX_ . 'module_group` WHERE `id_group` = ' . (int) $id_group . ' AND `id_shop` IN (' . (implode(',', array_map('intval', $shops))) . ')' ); $sql = 'INSERT INTO `' . _DB_PREFIX_ . 'module_group` (`id_module`, `id_shop`, `id_group`) VALUES '; foreach ($modules as $module) { foreach ($shops as $shop) { $sql .= '("' . (int) $module . '", "' . (int) $shop . '", "' . (int) $id_group . '"),'; } } $sql = rtrim($sql, ','); return (bool) Db::getInstance()->execute($sql); } /** * Add restrictions for a new module. * We authorize every groups to the new module. * * @param int $id_module * @param array $shops * * @return bool */ public static function addRestrictionsForModule($id_module, $shops = [1]) { if (!is_array($shops) || !count($shops)) { return false; } $res = true; foreach ($shops as $shop) { $res = $res && Db::getInstance()->execute(' INSERT INTO `' . _DB_PREFIX_ . 'module_group` (`id_module`, `id_shop`, `id_group`) (SELECT ' . (int) $id_module . ', ' . (int) $shop . ', id_group FROM `' . _DB_PREFIX_ . 'group`)'); } return $res; } /** * Return current group object * Use context. * * @return Group Group object */ public static function getCurrent() { if (self::$ps_unidentified_group === null) { self::$ps_unidentified_group = Configuration::get('PS_UNIDENTIFIED_GROUP'); } if (self::$ps_customer_group === null) { self::$ps_customer_group = Configuration::get('PS_CUSTOMER_GROUP'); } $customer = Context::getContext()->customer; if (Validate::isLoadedObject($customer)) { $id_group = (int) $customer->id_default_group; } else { $id_group = (int) self::$ps_unidentified_group; } if (!isset(self::$groups[$id_group])) { self::$groups[$id_group] = new Group($id_group); } if (!self::$groups[$id_group]->isAssociatedToShop(Context::getContext()->shop->id)) { $id_group = (int) self::$ps_customer_group; if (!isset(self::$groups[$id_group])) { self::$groups[$id_group] = new Group($id_group); } } return self::$groups[$id_group]; } public static function getAllGroupIds(): array { $query = new DbQuery(); $query ->select('g.`id_group`') ->from('group', 'g') ->orderby('g.`id_group` ASC') ; $result = Db::getInstance(_PS_USE_SQL_SLAVE_)->executeS($query); return array_column($result, 'id_group'); } /** * Light back office search for Group. * * @param string $query Searched string * * @return array Corresponding groups */ public static function searchByName($query) { return Db::getInstance()->getRow(' SELECT g.*, gl.* FROM `' . _DB_PREFIX_ . 'group` g LEFT JOIN `' . _DB_PREFIX_ . 'group_lang` gl ON (g.`id_group` = gl.`id_group`) WHERE `name` = \'' . pSQL($query) . '\' '); } }