File Manager Lite
Dir:
/home/u540325668/domains/dumbafarm.in/public_html/src/Adapter/Shop
Upload
[..]
CommandHandler/
Rename
Del
Context.php (6.37 KB)
Edit
Rename
Del
MaintenanceConfiguration.php (3.48 KB)
Edit
Rename
Del
QueryHandler/
Rename
Del
Repository/
Rename
Del
ShopInformation.php (2.14 KB)
Edit
Rename
Del
ShopUrlDataProvider.php (2.3 KB)
Edit
Rename
Del
Url/
Rename
Del
Edit: MaintenanceConfiguration.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) */ namespace PrestaShop\PrestaShop\Adapter\Shop; use PrestaShop\PrestaShop\Core\Configuration\AbstractMultistoreConfiguration; use Symfony\Component\OptionsResolver\OptionsResolver; /** * This class loads and saves data configuration for the Maintenance page. */ class MaintenanceConfiguration extends AbstractMultistoreConfiguration { /** * @var array<int, string> */ private const CONFIGURATION_FIELDS = ['enable_shop', 'maintenance_allow_admins', 'maintenance_ip', 'maintenance_text']; /** * {@inheritdoc} */ public function getConfiguration() { $shopConstraint = $this->getShopConstraint(); return [ 'enable_shop' => (bool) $this->configuration->get('PS_SHOP_ENABLE', false, $shopConstraint), 'maintenance_allow_admins' => (bool) $this->configuration->get('PS_MAINTENANCE_ALLOW_ADMINS', false, $shopConstraint), 'maintenance_ip' => $this->configuration->get('PS_MAINTENANCE_IP', null, $shopConstraint), 'maintenance_text' => $this->configuration->get('PS_MAINTENANCE_TEXT', null, $shopConstraint), ]; } /** * {@inheritdoc} */ public function updateConfiguration(array $configurationInputValues) { if ($this->validateConfiguration($configurationInputValues)) { $shopConstraint = $this->getShopConstraint(); $this->updateConfigurationValue('PS_SHOP_ENABLE', 'enable_shop', $configurationInputValues, $shopConstraint); $this->updateConfigurationValue('PS_MAINTENANCE_ALLOW_ADMINS', 'maintenance_allow_admins', $configurationInputValues, $shopConstraint); $this->updateConfigurationValue('PS_MAINTENANCE_IP', 'maintenance_ip', $configurationInputValues, $shopConstraint); $this->updateConfigurationValue('PS_MAINTENANCE_TEXT', 'maintenance_text', $configurationInputValues, $shopConstraint, ['html' => true]); } return []; } /** * @return OptionsResolver */ protected function buildResolver(): OptionsResolver { $resolver = new OptionsResolver(); $resolver->setDefined(self::CONFIGURATION_FIELDS); $resolver->setAllowedTypes('enable_shop', 'bool'); $resolver->setAllowedTypes('maintenance_allow_admins', 'bool'); $resolver->setAllowedTypes('maintenance_ip', ['string', 'null']); $resolver->setAllowedTypes('maintenance_text', ['array', 'null']); return $resolver; } }
Simpan