Skip to content

Instantly share code, notes, and snippets.

@macnibblet
Created November 19, 2012 09:09
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 1 You must be signed in to fork a gist
  • Save macnibblet/4109739 to your computer and use it in GitHub Desktop.
Save macnibblet/4109739 to your computer and use it in GitHub Desktop.
// account status
$form->add(array(
'name' => 'enabled',
'type' => 'Zend\Form\Element\Select',
'options' => array(
'value_options' => array(
0 => 'Disabled',
1 => 'Enabled'
)
),
'attributes' => array(
'value' => 1
)
));
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment