Created
November 25, 2013 19:34
-
-
Save alnutile/7647356 to your computer and use it in GitHub Desktop.
Set to validate true
This file contains hidden or 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
$form['results_area']['settings']['os_browser']['os'] = array( | |
'#type' => 'select', | |
'#options' => array('Windows 2012' => 'Windows 2012'), | |
'#default_value' => 'Windows 2012', | |
'#validated' => TRUE, | |
'#description' => t('What OS and Browser should be used for this test') | |
); | |
$form['results_area']['settings']['os_browser']['browser'] = array( | |
'#type' => 'select', | |
'#options' => array('chrome|31' => 'Google Chrome - 31'), | |
'#empty_value' => '--choose OS first--', | |
'#default_value' => 'chrome|31', | |
'#validated' => TRUE, | |
'#description' => t('What Browser do you want to use') | |
); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment