Skip to content

Instantly share code, notes, and snippets.

@bakura10
Forked from macnibblet/Register.php
Created November 19, 2012 09:11
Show Gist options
  • Save bakura10/4109758 to your computer and use it in GitHub Desktop.
Save bakura10/4109758 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(
array(
'value' => 99,
'label' => 'French',
'selected' => 'selected',
),
array(
'value' => -99,
'label' => 'Swedish',
)
)
),
'attributes' => array(
'value' => 1
)
));
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment