Created
March 5, 2015 18:35
-
-
Save jonathanfranks/f41c2bc5c21d4e8b5927 to your computer and use it in GitHub Desktop.
Drupal #states or conditions
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['my_field']['#states'] = array( | |
'visible' => array( | |
array( | |
array(':input[name="field_other[und]"]' => array('value' => 'first')), | |
'or', | |
array(':input[name="field_other[und]"]' => array('value' => 'second')), | |
), | |
), | |
); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment