Skip to content

Instantly share code, notes, and snippets.

@mordonez
Created May 16, 2013 10:45
Show Gist options
  • Save mordonez/5590863 to your computer and use it in GitHub Desktop.
Save mordonez/5590863 to your computer and use it in GitHub Desktop.
/**
* 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