<?php
/*
* This file is part of the Sylius package.
*
* (c) Paweł Jędrzejewski
*
* For the full copyright and license information, please view the LICENSE
* file that was distributed with this source code.
*/
declare(strict_types=1);
namespace Sylius\Bundle\TaxonomyBundle\Form\Type;
use Sylius\Bundle\ResourceBundle\Form\EventSubscriber\AddCodeFormSubscriber;
use Sylius\Bundle\ResourceBundle\Form\Type\AbstractResourceType;
use Sylius\Bundle\ResourceBundle\Form\Type\ResourceTranslationsType;
use Symfony\Component\Form\Extension\Core\Type\CheckboxType;
use Symfony\Component\Form\FormBuilderInterface;
final class TaxonType extends AbstractResourceType
{
public function buildForm(FormBuilderInterface $builder, array $options): void
{
$builder
->add('translations', ResourceTranslationsType::class, [
'entry_type' => TaxonTranslationType::class,
'label' => 'sylius.form.taxon.name',
])
->add('enabled', CheckboxType::class, [
'required' => false,
'label' => 'sylius.form.taxon.enabled',
])
->addEventSubscriber(new AddCodeFormSubscriber())
->add('parent', TaxonAutocompleteChoiceType::class, [
'label' => 'sylius.form.taxon.parent',
'required' => false,
])
;
}
public function getBlockPrefix(): string
{
return 'sylius_taxon';
}
}