Ejemplo n.º 1
0
 /**
  * {@inheritDoc}
  */
 public function buildForm(FormBuilderInterface $builder, array $options)
 {
     $builder->add('team', 'choice', array('choices' => array(GamePlayer::getAllowedTeams())))->add('position', 'choice', array('choices' => array(GamePlayer::getAllowedPositions())))->add('player_id', 'entity', array('empty_value' => 'Select player', 'property_path' => 'player', 'class' => 'CytronBabitchBundle:Player', 'property' => 'name'));
 }