?? GreyFile — Mystic File Browser
Current path:
home
/
webdevt
/
prestashop17
/
classes
/
?? Create WP Admin
??
Go up: /home/webdevt/prestashop17
?? Editing: Customization.php
<?php /** * Copyright since 2007 PrestaShop SA and Contributors * PrestaShop is an International Registered Trademark & Property of PrestaShop SA * * NOTICE OF LICENSE * * This source file is subject to the Open Software License (OSL 3.0) * that is bundled with this package in the file LICENSE.md. * It is also available through the world-wide-web at this URL: * https://opensource.org/licenses/OSL-3.0 * If you did not receive a copy of the license and are unable to * obtain it through the world-wide-web, please send an email * to license@prestashop.com so we can send you a copy immediately. * * DISCLAIMER * * Do not edit or add to this file if you wish to upgrade PrestaShop to newer * versions in the future. If you wish to customize PrestaShop for your * needs please refer to https://devdocs.prestashop.com/ for more information. * * @author PrestaShop SA and Contributors <contact@prestashop.com> * @copyright Since 2007 PrestaShop SA and Contributors * @license https://opensource.org/licenses/OSL-3.0 Open Software License (OSL 3.0) */ /** * Class CustomizationCore. */ class CustomizationCore extends ObjectModel { /** @var int */ public $id_product_attribute; /** @var int */ public $id_address_delivery; /** @var int */ public $id_cart; /** @var int */ public $id_product; /** @var int */ public $quantity; /** @var int */ public $quantity_refunded; /** @var int */ public $quantity_returned; /** @var bool */ public $in_cart; /** * @see ObjectModel::$definition */ public static $definition = [ 'table' => 'customization', 'primary' => 'id_customization', 'fields' => [ /* Classic fields */ 'id_product_attribute' => ['type' => self::TYPE_INT, 'validate' => 'isUnsignedId', 'required' => true], 'id_address_delivery' => ['type' => self::TYPE_INT, 'validate' => 'isUnsignedId', 'required' => true], 'id_cart' => ['type' => self::TYPE_INT, 'validate' => 'isUnsignedId', 'required' => true], 'id_product' => ['type' => self::TYPE_INT, 'validate' => 'isUnsignedId', 'required' => true], 'quantity' => ['type' => self::TYPE_INT, 'validate' => 'isUnsignedId', 'required' => true], 'quantity_refunded' => ['type' => self::TYPE_INT, 'validate' => 'isUnsignedId', 'required' => true], 'quantity_returned' => ['type' => self::TYPE_INT, 'validate' => 'isUnsignedId', 'required' => true], 'in_cart' => ['type' => self::TYPE_BOOL, 'validate' => 'isBool', 'required' => true], ], ]; protected $webserviceParameters = [ 'fields' => [ 'id_address_delivery' => [ 'xlink_resource' => [ 'resourceName' => 'addresses', ], ], 'id_cart' => [ 'xlink_resource' => [ 'resourceName' => 'carts', ], ], 'id_product' => [ 'xlink_resource' => [ 'resourceName' => 'products', ], ], ], 'associations' => [ 'customized_data_text_fields' => [ 'resource' => 'customized_data_text_field', 'virtual_entity' => true, 'fields' => [ 'id_customization_field' => ['required' => true, 'xlink_resource' => 'product_customization_fields'], 'value' => [], ], ], 'customized_data_images' => [ 'resource' => 'customized_data_image', 'virtual_entity' => true, 'setter' => false, 'fields' => [ 'id_customization_field' => ['xlink_resource' => 'product_customization_fields'], 'value' => [], ], ], ], ]; /** * Get returned Customizations. * * @param int $idOrder Order ID * * @return array|bool */ public static function getReturnedCustomizations($idOrder) { if (($result = Db::getInstance(_PS_USE_SQL_SLAVE_)->executeS(' SELECT ore.`id_order_return`, ord.`id_order_detail`, ord.`id_customization`, ord.`product_quantity` FROM `' . _DB_PREFIX_ . 'order_return` ore INNER JOIN `' . _DB_PREFIX_ . 'order_return_detail` ord ON (ord.`id_order_return` = ore.`id_order_return`) WHERE ore.`id_order` = ' . (int) ($idOrder) . ' AND ord.`id_customization` != 0')) === false) { return false; } $customizations = []; foreach ($result as $row) { $customizations[(int) ($row['id_customization'])] = $row; } return $customizations; } /** * Get ordered Customizations. * * @param int $idCart Cart ID * * @return array|bool Ordered Customizations * `false` if not found */ public static function getOrderedCustomizations($idCart) { if (!$result = Db::getInstance(_PS_USE_SQL_SLAVE_)->executeS('SELECT `id_customization`, `quantity` FROM `' . _DB_PREFIX_ . 'customization` WHERE `id_cart` = ' . (int) ($idCart))) { return false; } $customizations = []; foreach ($result as $row) { $customizations[(int) ($row['id_customization'])] = $row; } return $customizations; } /** * Get price of Customization. * * @param int $idCustomization Customization ID * * @return float|int Price of customization */ public static function getCustomizationPrice($idCustomization) { if (!(int) $idCustomization) { return 0; } return (float) Db::getInstance()->getValue( ' SELECT SUM(`price`) FROM `' . _DB_PREFIX_ . 'customized_data` WHERE `id_customization` = ' . (int) $idCustomization ); } /** * Get weight of Customization. * * @param int $idCustomization Customization ID * * @return float|int Weight */ public static function getCustomizationWeight($idCustomization) { if (!(int) $idCustomization) { return 0; } return (float) Db::getInstance()->getValue( ' SELECT SUM(`weight`) FROM `' . _DB_PREFIX_ . 'customized_data` WHERE `id_customization` = ' . (int) $idCustomization ); } /** * Count Customization quantity by Product. * * @param array $customizations Customizations * * @return array Customization quantities by Product */ public static function countCustomizationQuantityByProduct($customizations) { $total = []; foreach ($customizations as $customization) { $total[(int) $customization['id_order_detail']] = !isset($total[(int) $customization['id_order_detail']]) ? (int) $customization['quantity'] : $total[(int) $customization['id_order_detail']] + (int) $customization['quantity']; } return $total; } /** * Get label. * * @param int $idCustomization Customization ID * @param int $idLang Language IOD * @param int|null $idShop Shop ID * * @return bool|false|string|null */ public static function getLabel($idCustomization, $idLang, $idShop = null) { if (!(int) $idCustomization || !(int) $idLang) { return false; } if (Shop::isFeatureActive() && !(int) $idShop) { $idShop = (int) Context::getContext()->shop->id; } $result = Db::getInstance(_PS_USE_SQL_SLAVE_)->getValue( ' SELECT `name` FROM `' . _DB_PREFIX_ . 'customization_field_lang` WHERE `id_customization_field` = ' . (int) $idCustomization . ((int) $idShop ? ' AND `id_shop` = ' . (int) $idShop : '') . ' AND `id_lang` = ' . (int) $idLang ); return $result; } /** * Retrieve quantities from IDs. * * @param array $idsCustomizations Customization IDs * * @return array Quantities */ public static function retrieveQuantitiesFromIds($idsCustomizations) { $quantities = []; $inValues = ''; foreach ($idsCustomizations as $key => $idCustomization) { if ($key > 0) { $inValues .= ','; } $inValues .= (int) $idCustomization; } if (!empty($inValues)) { $results = Db::getInstance()->executeS( 'SELECT `id_customization`, `id_product`, `quantity`, `quantity_refunded`, `quantity_returned` FROM `' . _DB_PREFIX_ . 'customization` WHERE `id_customization` IN (' . $inValues . ')' ); foreach ($results as $row) { $quantities[$row['id_customization']] = $row; } } return $quantities; } /** * Count quantity by Cart. * * @param int $idCart Cart ID * * @return array */ public static function countQuantityByCart($idCart) { $quantity = []; $results = Db::getInstance()->executeS(' SELECT `id_product`, `id_product_attribute`, SUM(`quantity`) AS quantity FROM `' . _DB_PREFIX_ . 'customization` WHERE `id_cart` = ' . (int) $idCart . ' GROUP BY `id_cart`, `id_product`, `id_product_attribute` '); foreach ($results as $row) { $quantity[$row['id_product']][$row['id_product_attribute']] = $row['quantity']; } return $quantity; } /** * This method is allow to know if a feature is used or active. * * @since 1.5.0.1 * * @return bool */ public static function isFeatureActive() { return Configuration::get('PS_CUSTOMIZATION_FEATURE_ACTIVE'); } /** * This method is allow to know if a Customization entity is currently used. * * @since 1.5.0.1 * * @param $table * @param $hasActiveColumn * * @return bool */ public static function isCurrentlyUsed($table = null, $hasActiveColumn = false) { return (bool) Db::getInstance()->getValue(' SELECT `id_customization_field` FROM `' . _DB_PREFIX_ . 'customization_field` '); } /** * Get customized text fields * (for webservice). * * @return array|false|mysqli_result|PDOStatement|resource|null */ public function getWsCustomizedDataTextFields() { if (!$results = Db::getInstance()->executeS(' SELECT id_customization_field, value FROM `' . _DB_PREFIX_ . 'customization_field` cf LEFT JOIN `' . _DB_PREFIX_ . 'customized_data` cd ON (cf.id_customization_field = cd.index) WHERE `id_product` = ' . (int) $this->id_product . ' AND id_customization = ' . (int) $this->id . ' AND cf.type = ' . (int) Product::CUSTOMIZE_TEXTFIELD)) { return []; } return $results; } /** * Get customized images data * (for webservice). * * @return array|false|mysqli_result|PDOStatement|resource|null */ public function getWsCustomizedDataImages() { if (!$results = Db::getInstance()->executeS(' SELECT id_customization_field, value FROM `' . _DB_PREFIX_ . 'customization_field` cf LEFT JOIN `' . _DB_PREFIX_ . 'customized_data` cd ON (cf.id_customization_field = cd.index) WHERE `id_product` = ' . (int) $this->id_product . ' AND id_customization = ' . (int) $this->id . ' AND cf.type = ' . (int) Product::CUSTOMIZE_FILE)) { return []; } return $results; } /** * Set customized text fields * (for webservice). * * @param array $values * * @return bool */ public function setWsCustomizedDataTextFields($values) { $cart = new Cart($this->id_cart); if (!Validate::isLoadedObject($cart)) { WebserviceRequest::getInstance()->setError(500, $this->trans('Could not load cart id=%s', [$this->id_cart], 'Admin.Notifications.Error'), 137); return false; } Db::getInstance()->execute(' DELETE FROM `' . _DB_PREFIX_ . 'customized_data` WHERE id_customization = ' . (int) $this->id . ' AND type = ' . (int) Product::CUSTOMIZE_TEXTFIELD); foreach ($values as $value) { $query = 'INSERT INTO `' . _DB_PREFIX_ . 'customized_data` (`id_customization`, `type`, `index`, `value`) VALUES (' . (int) $this->id . ', ' . (int) Product::CUSTOMIZE_TEXTFIELD . ', ' . (int) $value['id_customization_field'] . ', \'' . pSQL($value['value']) . '\')'; if (!Db::getInstance()->execute($query)) { return false; } } return true; } /** * Delete the current context shops langs. * * @param int $idCustomizationField * @param int[] $shopList * * @return bool * * @throws PrestaShopDatabaseException */ public static function deleteCustomizationFieldLangByShop($idCustomizationField, $shopList) { $return = Db::getInstance()->execute('DELETE FROM `' . _DB_PREFIX_ . 'customization_field_lang` WHERE `id_customization_field` = ' . (int) $idCustomizationField . ' AND `id_shop` IN (' . implode(',', $shopList) . ')'); if (!$return) { throw new PrestaShopDatabaseException('An error occurred while deletion the customization fields lang'); } return $return; } }
Save
Upload
??
Create Folder
??
Create File
??
assets
|
??? Delete
??
cache
|
??? Delete
??
checkout
|
??? Delete
??
container
|
??? Delete
??
controller
|
??? Delete
??
db
|
??? Delete
??
exception
|
??? Delete
??
form
|
??? Delete
??
helper
|
??? Delete
??
lang
|
??? Delete
??
log
|
??? Delete
??
module
|
??? Delete
??
order
|
??? Delete
??
pdf
|
??? Delete
??
product
|
??? Delete
??
proxy
|
??? Delete
??
range
|
??? Delete
??
shop
|
??? Delete
??
Smarty
|
??? Delete
??
stock
|
??? Delete
??
tax
|
??? Delete
??
tree
|
??? Delete
??
webservice
|
??? Delete
??
.htaccess
|
?? Edit
|
??? Delete
??
Access.php
|
?? Edit
|
??? Delete
??
Address.php
|
?? Edit
|
??? Delete
??
AddressChecksumCore.php
|
?? Edit
|
??? Delete
??
AddressFormat.php
|
?? Edit
|
??? Delete
??
Alias.php
|
?? Edit
|
??? Delete
??
Attachment.php
|
?? Edit
|
??? Delete
??
Attribute.php
|
?? Edit
|
??? Delete
??
AttributeGroup.php
|
?? Edit
|
??? Delete
??
Carrier.php
|
?? Edit
|
??? Delete
??
Cart.php
|
?? Edit
|
??? Delete
??
CartRule.php
|
?? Edit
|
??? Delete
??
Category.php
|
?? Edit
|
??? Delete
??
Chart.php
|
?? Edit
|
??? Delete
??
ChecksumInterface.php
|
?? Edit
|
??? Delete
??
CMS.php
|
?? Edit
|
??? Delete
??
CMSCategory.php
|
?? Edit
|
??? Delete
??
CMSRole.php
|
?? Edit
|
??? Delete
??
Combination.php
|
?? Edit
|
??? Delete
??
Configuration.php
|
?? Edit
|
??? Delete
??
ConfigurationKPI.php
|
?? Edit
|
??? Delete
??
ConfigurationTest.php
|
?? Edit
|
??? Delete
??
Connection.php
|
?? Edit
|
??? Delete
??
ConnectionsSource.php
|
?? Edit
|
??? Delete
??
Contact.php
|
?? Edit
|
??? Delete
??
Context.php
|
?? Edit
|
??? Delete
??
Cookie.php
|
?? Edit
|
??? Delete
??
Country.php
|
?? Edit
|
??? Delete
??
CSV.php
|
?? Edit
|
??? Delete
??
Currency.php
|
?? Edit
|
??? Delete
??
Curve.php
|
?? Edit
|
??? Delete
??
Customer.php
|
?? Edit
|
??? Delete
??
CustomerAddress.php
|
?? Edit
|
??? Delete
??
CustomerMessage.php
|
?? Edit
|
??? Delete
??
CustomerSession.php
|
?? Edit
|
??? Delete
??
CustomerThread.php
|
?? Edit
|
??? Delete
??
Customization.php
|
?? Edit
|
??? Delete
??
CustomizationField.php
|
?? Edit
|
??? Delete
??
DateRange.php
|
?? Edit
|
??? Delete
??
Delivery.php
|
?? Edit
|
??? Delete
??
Dispatcher.php
|
?? Edit
|
??? Delete
??
Employee.php
|
?? Edit
|
??? Delete
??
EmployeeSession.php
|
?? Edit
|
??? Delete
??
Feature.php
|
?? Edit
|
??? Delete
??
FeatureValue.php
|
?? Edit
|
??? Delete
??
FileUploader.php
|
?? Edit
|
??? Delete
??
Gender.php
|
?? Edit
|
??? Delete
??
Group.php
|
?? Edit
|
??? Delete
??
GroupReduction.php
|
?? Edit
|
??? Delete
??
Guest.php
|
?? Edit
|
??? Delete
??
Hook.php
|
?? Edit
|
??? Delete
??
Image.php
|
?? Edit
|
??? Delete
??
ImageManager.php
|
?? Edit
|
??? Delete
??
ImageType.php
|
?? Edit
|
??? Delete
??
index.php
|
?? Edit
|
??? Delete
??
Language.php
|
?? Edit
|
??? Delete
??
Link.php
|
?? Edit
|
??? Delete
??
LocalizationPack.php
|
?? Edit
|
??? Delete
??
Mail.php
|
?? Edit
|
??? Delete
??
Manufacturer.php
|
?? Edit
|
??? Delete
??
ManufacturerAddress.php
|
?? Edit
|
??? Delete
??
Media.php
|
?? Edit
|
??? Delete
??
Message.php
|
?? Edit
|
??? Delete
??
Meta.php
|
?? Edit
|
??? Delete
??
Notification.php
|
?? Edit
|
??? Delete
??
ObjectModel.php
|
?? Edit
|
??? Delete
??
Pack.php
|
?? Edit
|
??? Delete
??
Page.php
|
?? Edit
|
??? Delete
??
PaymentFree.php
|
?? Edit
|
??? Delete
??
PaymentModule.php
|
?? Edit
|
??? Delete
??
PhpEncryption.php
|
?? Edit
|
??? Delete
??
PhpEncryptionEngine.php
|
?? Edit
|
??? Delete
??
PhpEncryptionLegacyEngine.php
|
?? Edit
|
??? Delete
??
PrestaShopAutoload.php
|
?? Edit
|
??? Delete
??
PrestaShopBackup.php
|
?? Edit
|
??? Delete
??
PrestaShopCollection.php
|
?? Edit
|
??? Delete
??
PrestaShopLogger.php
|
?? Edit
|
??? Delete
??
Product.php
|
?? Edit
|
??? Delete
??
ProductAssembler.php
|
?? Edit
|
??? Delete
??
ProductDownload.php
|
?? Edit
|
??? Delete
??
ProductPresenterFactory.php
|
?? Edit
|
??? Delete
??
ProductSale.php
|
?? Edit
|
??? Delete
??
ProductSupplier.php
|
?? Edit
|
??? Delete
??
Profile.php
|
?? Edit
|
??? Delete
??
QqUploadedFileForm.php
|
?? Edit
|
??? Delete
??
QqUploadedFileXhr.php
|
?? Edit
|
??? Delete
??
QuickAccess.php
|
?? Edit
|
??? Delete
??
Referrer.php
|
?? Edit
|
??? Delete
??
RequestSql.php
|
?? Edit
|
??? Delete
??
Risk.php
|
?? Edit
|
??? Delete
??
Search.php
|
?? Edit
|
??? Delete
??
SearchEngine.php
|
?? Edit
|
??? Delete
??
SpecificPrice.php
|
?? Edit
|
??? Delete
??
SpecificPriceRule.php
|
?? Edit
|
??? Delete
??
State.php
|
?? Edit
|
??? Delete
??
Store.php
|
?? Edit
|
??? Delete
??
Supplier.php
|
?? Edit
|
??? Delete
??
SupplierAddress.php
|
?? Edit
|
??? Delete
??
Tab.php
|
?? Edit
|
??? Delete
??
Tag.php
|
?? Edit
|
??? Delete
??
Tools.php
|
?? Edit
|
??? Delete
??
Translate.php
|
?? Edit
|
??? Delete
??
TranslatedConfiguration.php
|
?? Edit
|
??? Delete
??
Upgrader.php
|
?? Edit
|
??? Delete
??
Uploader.php
|
?? Edit
|
??? Delete
??
Validate.php
|
?? Edit
|
??? Delete
??
ValidateConstraintTranslator.php
|
?? Edit
|
??? Delete
??
WarehouseAddress.php
|
?? Edit
|
??? Delete
??
Windows.php
|
?? Edit
|
??? Delete
??
Zone.php
|
?? Edit
|
??? Delete