Current File : //var/www/vinorea/src/PrestaShopBundle/Form/Admin/AdvancedParameters/Performance/SmartyType.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 PrestaShopBundle\Form\Admin\AdvancedParameters\Performance;
use PrestaShopBundle\Form\Admin\Type\SwitchType;
use PrestaShopBundle\Form\Admin\Type\TranslatorAwareType;
use Symfony\Component\Form\Extension\Core\Type\ChoiceType;
use Symfony\Component\Form\FormBuilderInterface;
/**
* This form class generates the "Smarty" form in Performance page.
*/
class SmartyType extends TranslatorAwareType
{
/**
* {@inheritdoc}
*/
public function buildForm(FormBuilderInterface $builder, array $options)
{
$builder
->add('template_compilation', ChoiceType::class, [
'choices' => [
'Never recompile template files' => 0,
'Recompile templates if the files have been updated' => 1,
'Force compilation' => 2,
],
'placeholder' => false,
'required' => false,
'label' => $this->trans('Template compilation', 'Admin.Advparameters.Feature'),
'choice_translation_domain' => 'Admin.Advparameters.Feature',
])
->add('cache', SwitchType::class, [
'required' => false,
'label' => $this->trans('Cache', 'Admin.Advparameters.Feature'),
'help' => $this->trans('Should be enabled except for debugging.', 'Admin.Advparameters.Feature'),
])
->add('multi_front_optimization', SwitchType::class, [
'required' => false,
'label' => $this->trans('Multi-front optimizations', 'Admin.Advparameters.Feature'),
'help' => $this->trans('Should be enabled if you want to avoid to store the smarty cache on NFS.', 'Admin.Advparameters.Help'),
'row_attr' => [
'class' => 'smarty-cache-option',
],
])
->add('clear_cache', ChoiceType::class, [
'choices' => [
'Never clear cache files' => 'never',
'Clear cache everytime something has been modified' => 'everytime',
],
'placeholder' => false,
'required' => false,
'label' => $this->trans('Clear cache', 'Admin.Advparameters.Feature'),
'row_attr' => [
'class' => 'smarty-cache-option',
],
'choice_translation_domain' => 'Admin.Advparameters.Feature',
]);
}
/**
* {@inheritdoc}
*/
public function getBlockPrefix()
{
return 'performance_smarty_block';
}
}