* * 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\AbstractType; use Symfony\Component\OptionsResolver\Options; use Symfony\Component\OptionsResolver\OptionsResolverInterface; use Sonata\AdminBundle\Form\DataTransformer\ModelToIdTransformer; /** * This type define a standard hidden field, that stored id to a object * * @author Andrej Hudec * */ class ModelHiddenType extends AbstractType { /** * {@inheritDoc} */ public function buildForm(FormBuilderInterface $builder, array $options) { $builder ->addViewTransformer(new ModelToIdTransformer($options['model_manager'], $options['class']), true) ; } /** * {@inheritDoc} */ public function setDefaultOptions(OptionsResolverInterface $resolver) { $resolver->setDefaults(array( 'model_manager' => null, 'class' => null, )); } /** * {@inheritDoc} */ public function getParent() { return 'hidden'; } /** * {@inheritDoc} */ public function getName() { return 'sonata_type_model_hidden'; } }