'Deblan\Bundle\BlogBundle\Model\Post', 'name' => 'post', 'csrf_protection' => false, ); /** * {@inheritdoc} */ public function buildForm(FormBuilderInterface $builder, array $options) { $builder->add( 'Title', 'text', array( 'label' => 'Titre', 'required' => false, ) ); $builder->add( 'Tags', 'text', array( 'required' => false, ) ); $builder->add( 'Active', 'choice', array( 'label' => 'En ligne', 'required' => false, 'choices' => array( 'bool.both' => 'Anyway', 'bool.true' => 'True', 'bool.false' => 'False', ) ) ); $builder->add( 'UserId', 'model', array( 'label' => 'Auteur', 'class' => 'FOS\UserBundle\Propel\User', 'query' => UserQuery::create()->filterByEnabled(true), 'required' => false, ) ); } }