* @copyright Since 2007 PrestaShop SA and Contributors * @license https://opensource.org/licenses/OSL-3.0 Open Software License (OSL 3.0) */ declare(strict_types=1); namespace PrestaShop\Module\FacetedSearch\Form\AttributeGroup; use PrestaShop\Module\FacetedSearch\Constraint\UrlSegment; use PrestaShop\PrestaShop\Core\Exception\CoreException; use PrestaShopBundle\Form\Admin\Type\SwitchType; use PrestaShopBundle\Form\Admin\Type\TranslatableType; use PrestaShopBundle\Translation\DataCollectorTranslator; use PrestaShopBundle\Translation\TranslatorComponent; use Symfony\Component\Form\FormBuilderInterface; class FormModifier { /** * @var DataCollectorTranslator|TranslatorComponent */ private $translator; /** * @param DataCollectorTranslator|TranslatorComponent $translator */ public function __construct($translator) { $this->translator = $translator; } public function modify(FormBuilderInterface $formBuilder) { // Dynamically check the class and instanciate it, this avoids the module from requiring PrestaShop 1.7.8 minimum, // besides this code is not supposed to be called in older versions if (!class_exists('\PrestaShopBundle\Form\FormBuilderModifier')) { throw new CoreException('FormBuilderModifier class was not found, it is only available in PrestaShop 1.7.8 and more'); } $formBuilderModifier = new \PrestaShopBundle\Form\FormBuilderModifier(); $invalidCharsHint = $this->translator->trans( 'Invalid characters: <>;=#{}_', [], 'Modules.Facetedsearch.Admin' ); $urlTip = $this->translator->trans( 'When the Faceted Search module is enabled, you can get more detailed URLs by choosing the word that best represent this attribute. By default, PrestaShop uses the attribute\'s name, but you can change that setting using this field.', [], 'Modules.Facetedsearch.Admin' ); $metaTitleTip = $this->translator->trans( 'When the Faceted Search module is enabled, you can get more detailed page titles by choosing the word that best represent this attribute. By default, PrestaShop uses the attribute\'s name, but you can change that setting using this field.', [], 'Modules.Facetedsearch.Admin' ); $formBuilderModifier->addBefore( $formBuilder, 'group_type', 'url_name', TranslatableType::class, [ 'required' => false, 'label' => $this->translator->trans('URL', [], 'Modules.Facetedsearch.Admin'), 'help' => $urlTip . ' ' . $invalidCharsHint, 'options' => [ 'constraints' => [ new UrlSegment([ 'message' => $this->translator->trans('%s is invalid.', [], 'Admin.Notifications.Error'), ]), ], ], ] ); $formBuilderModifier->addBefore( $formBuilder, 'group_type', 'meta_title', TranslatableType::class, [ 'required' => false, 'label' => $this->translator->trans('Meta title', [], 'Modules.Facetedsearch.Admin'), 'help' => $metaTitleTip, ] ); $formBuilderModifier->addBefore( $formBuilder, 'group_type', 'is_indexable', SwitchType::class, [ 'required' => false, 'label' => $this->translator->trans('Indexable', [], 'Modules.Facetedsearch.Admin'), 'help' => $this->translator->trans( 'Use this attribute in URL generated by the Faceted Search module.', [], 'Modules.Facetedsearch.Admin' ), ] ); } }