add( 'objects', 'choice', array( 'required' => true, 'multiple' => true, 'expanded' => true, ) ); $builder->add( 'action', 'choice', array( 'required' => true, 'choices' => array( self::BATCH_COPY => 'Copy', self::BATCH_REMOVE => 'Remove', ), 'multiple' => false, ) ); } /** * {@inheritdoc} */ public function setDefaultOptions(OptionsResolverInterface $resolver) { $resolver->setDefaults(array( )); } /** * {@inheritdoc} */ public function getName() { return 'batch'; } }