Skip to content

Instantly share code, notes, and snippets.

@tvl83
Created January 30, 2014 18:24
Show Gist options
  • Save tvl83/8715306 to your computer and use it in GitHub Desktop.
Save tvl83/8715306 to your computer and use it in GitHub Desktop.
Custom Form Choices
<?php
public function buildForm(FormBuilderInterface $builder, array $options)
{
$builder
->add('status', 'choice', array('choices' => array(
'PENDING' => 'PENDING',
'APPROVED' => 'APPROVED',
'DENIED' => 'DENIED',
'REVOKED' => 'REVOKED'
)))
;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment