{#** * 2007-2019 PrestaShop and Contributors * * 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.txt. * 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://www.prestashop.com for more information. * * @author PrestaShop SA * @copyright 2007-2019 PrestaShop SA and Contributors * @license https://opensource.org/licenses/OSL-3.0 Open Software License (OSL 3.0) * International Registered Trademark & Property of PrestaShop SA *#} {% extends '@PrestaShop/Admin/layout.html.twig' %} {% trans_default_domain "Admin.Shopparameters.Feature" %} {% import '@PrestaShop/Admin/macros.html.twig' as ps %} {% set generalForm = form.general %} {% block content %} {{ form_start(form, {'attr' : {'class': 'form'} }) }}
{% block maintenance_form_general %}

business_center {{ 'General'|trans({}, 'Admin.Global') }}

{{ ps.label_with_help(('Enable Shop'|trans), ('Activate or deactivate your shop (It is a good idea to deactivate your shop while you perform maintenance. Please note that the webservice will not be disabled).'|trans({}, 'Admin.Shopparameters.Help'))) }}
{{ form_errors(generalForm.enable_shop) }} {{ form_widget(generalForm.enable_shop) }}
{{ ps.label_with_help(('Maintenance IP'|trans), ('IP addresses allowed to access the front office even if the shop is disabled. Please use a comma to separate them (e.g. 42.24.4.2,127.0.0.1,99.98.97.96)'|trans({}, 'Admin.Shopparameters.Help'))) }}
{{ form_errors(generalForm.maintenance_ip) }} {{ form_widget(generalForm.maintenance_ip, { 'currentIp': currentIp}) }}
{{ ps.label_with_help(('Custom maintenance text'|trans), ('Custom text displayed on maintenance page while shop is deactivated.'|trans({}, 'Admin.Shopparameters.Help'))) }}
{{ form_errors(generalForm.maintenance_text) }} {{ form_widget(generalForm.maintenance_text) }}
{{ form_rest(generalForm) }}
{% endblock %}
{{ form_end(form) }} {% endblock %} {% block javascripts %} {{ parent() }} {% endblock %}