Created
August 4, 2016 19:19
-
-
Save DinoChiesa/10ece2d33ac110f066b252235422ec38 to your computer and use it in GitHub Desktop.
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['settings'] = array( | |
'#type' => 'textfield', | |
'#states' => array( | |
// Only show this field when the 'toggle_me' checkbox is enabled. | |
'visible' => array( | |
':input[name="toggle_me"]' => array('checked' => TRUE), | |
), | |
), | |
); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment