Created
May 16, 2013 10:45
-
-
Save mordonez/5590863 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
/** | |
* Implements field_group_build_pre_render_alter. | |
*/ | |
function iniciativas_field_group_build_pre_render_alter(&$element) { | |
if (!isset($element['#view_mode']) && isset($element['group_edit_datos_basicos'])) { | |
$element['group_edit_datos_basicos'] += array( | |
'#states' => array( | |
'visible' => array( | |
'#edit-field-iniciativa-tipo-und' => array('value' => 'individual'), | |
), | |
), | |
); | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment