add('name', 'text', array( 'required' => true, )); $builder->add('url', 'text', array( 'required' => true, )); $builder->add('tags', 'choice', array( 'choices' => $options['tags'], 'expanded' => true, 'multiple' => true )); } public function getName() { return 'element_add'; } public function getDefaultOptions(array $options) { return array( 'name' => '', 'url' => '', 'tags' => array(), 'data_class' => 'Muzich\CoreBundle\Entity\Element' ); } }