// 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