for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
/*
* This file was created by developers working at BitBag
* Do you need more information about us and what we do? Visit our https://bitbag.io website!
* We are hiring developers from all over the world. Join us and start your new, exciting adventure and become part of us: https://bitbag.io/career
*/
declare(strict_types=1);
namespace BitBag\SyliusCmsPlugin\Form\Type;
use Sylius\Bundle\ResourceBundle\Form\Type\ResourceAutocompleteChoiceType;
use Symfony\Component\Form\AbstractType;
use Symfony\Component\Form\FormInterface;
use Symfony\Component\Form\FormView;
use Symfony\Component\OptionsResolver\OptionsResolver;
final class SectionAutocompleteChoiceType extends AbstractType
{
public function configureOptions(OptionsResolver $resolver): void
$resolver->setDefaults([
'resource' => 'bitbag_sylius_cms_plugin.section',
'choice_name' => 'name',
'choice_value' => 'code',
]);
}
public function buildView(
FormView $view,
FormInterface $form,
array $options
): void {
$view->vars['remote_criteria_type'] = 'contains';
$view->vars['remote_criteria_name'] = 'phrase';
public function getBlockPrefix(): string
return 'bitbag_section_autocomplete_choice';
public function getParent(): string
return ResourceAutocompleteChoiceType::class;