PATH:
root
/
presta2srcAdapterProduct
<?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) */ namespace PrestaShop\PrestaShop\Adapter\Product; use PrestaShop\PrestaShop\Adapter\Configuration; use PrestaShop\PrestaShop\Core\Configuration\DataConfigurationInterface; use Symfony\Component\OptionsResolver\OptionsResolver; /** * Class PageConfiguration is responsible for saving & loading product page configuration. */ class PageConfiguration implements DataConfigurationInterface { /** * @var Configuration */ private $configuration; public function __construct(Configuration $configuration) { $this->configuration = $configuration; } /** * {@inheritdoc} */ public function getConfiguration() { return [ 'display_quantities' => $this->configuration->getBoolean('PS_DISPLAY_QTIES'), 'display_last_quantities' => $this->configuration->get('PS_LAST_QTIES'), 'display_unavailable_attributes' => $this->configuration->getBoolean('PS_DISP_UNAVAILABLE_ATTR'), 'allow_add_variant_to_cart_from_listing' => $this->configuration->getBoolean('PS_ATTRIBUTE_CATEGORY_DISPLAY'), 'attribute_anchor_separator' => $this->configuration->get('PS_ATTRIBUTE_ANCHOR_SEPARATOR'), 'display_discount_price' => $this->configuration->getBoolean('PS_DISPLAY_DISCOUNT_PRICE'), ]; } /** * {@inheritdoc} */ public function updateConfiguration(array $config) { $errors = []; if ($this->validateConfiguration($config)) { $this->configuration->set('PS_DISPLAY_QTIES', (int) $config['display_quantities']); $this->configuration->set('PS_LAST_QTIES', (int) $config['display_last_quantities']); $this->configuration->set('PS_DISP_UNAVAILABLE_ATTR', (int) $config['display_unavailable_attributes']); $this->configuration->set('PS_ATTRIBUTE_CATEGORY_DISPLAY', (int) $config['allow_add_variant_to_cart_from_listing']); $this->configuration->set('PS_ATTRIBUTE_ANCHOR_SEPARATOR', $config['attribute_anchor_separator']); $this->configuration->set('PS_DISPLAY_DISCOUNT_PRICE', (int) $config['display_discount_price']); } return $errors; } /** * {@inheritdoc} */ public function validateConfiguration(array $config) { $resolver = new OptionsResolver(); $resolver->setRequired([ 'display_quantities', 'display_last_quantities', 'display_unavailable_attributes', 'allow_add_variant_to_cart_from_listing', 'attribute_anchor_separator', 'display_discount_price', ]); $resolver->resolve($config); return true; } }
[-] FilterCategoriesRequestPurifier.php
[edit]
[+]
CommandHandler
[-] AdminProductDataUpdater.php
[edit]
[+]
..
[-] PageConfiguration.php
[edit]
[-] PriceFormatter.php
[edit]
[-] ListParametersUpdater.php
[edit]
[-] AttachmentDataProvider.php
[edit]
[-] PaginationConfiguration.php
[edit]
[-] GeneralConfiguration.php
[edit]
[-] ProductColorsRetriever.php
[edit]
[-] PriceCalculator.php
[edit]
[+]
QueryHandler
[-] StockConfiguration.php
[edit]
[-] AdminProductWrapper.php
[edit]
[-] AdminProductDataProvider.php
[edit]
[-] ProductDataProvider.php
[edit]
[-] PackItemsManager.php
[edit]