Created
January 30, 2014 18:24
-
-
Save tvl83/8715306 to your computer and use it in GitHub Desktop.
Custom Form Choices
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?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