123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131 |
- <?php
- /*
- * This file is part of the Sonata package.
- *
- * (c) Thomas Rabaix <thomas.rabaix@sonata-project.org>
- *
- * For the full copyright and license information, please view the LICENSE
- * file that was distributed with this source code.
- *
- */
- namespace Sonata\AdminBundle\Form\Type;
- use Symfony\Component\Form\Extension\Core\ChoiceList\ChoiceListInterface;
- use Symfony\Component\Form\FormBuilderInterface;
- use Symfony\Component\Form\AbstractType;
- use Symfony\Component\Form\FormInterface;
- use Symfony\Component\Form\FormView;
- use Symfony\Component\OptionsResolver\Options;
- use Symfony\Component\OptionsResolver\OptionsResolverInterface;
- use Sonata\AdminBundle\Form\EventListener\MergeCollectionListener;
- use Sonata\AdminBundle\Form\ChoiceList\ModelChoiceList;
- use Sonata\AdminBundle\Form\DataTransformer\ModelsToArrayTransformer;
- use Sonata\AdminBundle\Form\DataTransformer\ModelToIdTransformer;
- /**
- * This type define a standard select input with a + sign to add new associated object
- *
- */
- class ModelType extends AbstractType
- {
- /**
- * {@inheritDoc}
- */
- public function buildForm(FormBuilderInterface $builder, array $options)
- {
- if ($options['multiple']) {
- $builder
- ->addEventSubscriber(new MergeCollectionListener($options['model_manager']))
- ->addViewTransformer(new ModelsToArrayTransformer($options['choice_list']), true);
- } else {
- $builder
- ->addViewTransformer(new ModelToIdTransformer($options['model_manager'], $options['class']), true)
- ;
- }
- }
- /**
- * {@inheritdoc}
- */
- public function buildView(FormView $view, FormInterface $form, array $options)
- {
- $view->vars['btn_add'] = $options['btn_add'];
- $view->vars['btn_list'] = $options['btn_list'];
- $view->vars['btn_delete'] = $options['btn_delete'];
- $view->vars['btn_catalogue'] = $options['btn_catalogue'];
- }
- /**
- * {@inheritDoc}
- */
- public function setDefaultOptions(OptionsResolverInterface $resolver)
- {
- $resolver->setDefaults(array(
- 'compound' => function (Options $options) {
- if (isset($options['multiple']) && $options['multiple']) {
- if (isset($options['expanded']) && $options['expanded']) {
- //checkboxes
- return true;
- }
- //select tag (with multiple attribute)
- return false;
- }
- if (isset($options['expanded']) && $options['expanded']) {
- //radio buttons
- return true;
- }
- //select tag
- return false;
- },
- 'template' => 'choice',
- 'multiple' => false,
- 'expanded' => false,
- 'model_manager' => null,
- 'class' => null,
- 'property' => null,
- 'query' => null,
- 'choices' => null,
- 'preferred_choices' => array(),
- 'btn_add' => 'link_add',
- 'btn_list' => 'link_list',
- 'btn_delete' => 'link_delete',
- 'btn_catalogue' => 'SonataAdminBundle',
- 'choice_list' => function (Options $options, $previousValue) {
- if ($previousValue instanceof ChoiceListInterface && count($choices = $previousValue->getChoices())) {
- return $choices;
- }
- return new ModelChoiceList(
- $options['model_manager'],
- $options['class'],
- $options['property'],
- $options['query'],
- $options['choices']
- );
- }
- ));
- }
- /**
- * {@inheritDoc}
- */
- public function getParent()
- {
- return 'choice';
- }
- /**
- * {@inheritDoc}
- */
- public function getName()
- {
- return 'sonata_type_model';
- }
- }
|