1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768 |
- <?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\FormBuilderInterface;
- use Symfony\Component\Form\FormFactoryInterface;
- use Symfony\Component\Form\AbstractType;
- use Symfony\Component\Form\FormInterface;
- use Symfony\Component\Form\FormView;
- use Symfony\Component\OptionsResolver\OptionsResolverInterface;
- use Symfony\Component\OptionsResolver\Options;
- use Sonata\AdminBundle\Form\EventListener\MergeCollectionListener;
- use Sonata\AdminBundle\Form\ChoiceList\ModelChoiceList;
- use Sonata\AdminBundle\Form\DataTransformer\ModelsToArrayTransformer;
- use Sonata\AdminBundle\Form\DataTransformer\ModelToIdTransformer;
- use Sonata\AdminBundle\Model\ModelManagerInterface;
- class ModelReferenceType extends AbstractType
- {
- /**
- * {@inheritDoc}
- */
- public function buildForm(FormBuilderInterface $builder, array $options)
- {
- $builder->addModelTransformer(new ModelToIdTransformer($options['model_manager'], $options['class']));
- }
- /**
- * {@inheritDoc}
- */
- public function setDefaultOptions(OptionsResolverInterface $resolver)
- {
- $resolver->setDefaults(array(
- 'compound' => false,
- 'model_manager' => null,
- 'class' => null,
- 'parent' => 'text'
- ));
- }
- /**
- * {@inheritDoc}
- */
- public function getParent()
- {
- return 'text';
- }
- /**
- * {@inheritDoc}
- */
- public function getName()
- {
- return 'sonata_type_model_reference';
- }
- }
|