You are here

function _field_conditional_state_set_form_root_actions in Field Conditional States 7.2

Collects actions that have to be executed on the root level of the form.

1 call to _field_conditional_state_set_form_root_actions()
field_conditional_state_element_after_build in ./field_conditional_state.module
Finds the actual element and adds the #pre_render callback to it.
1 string reference to '_field_conditional_state_set_form_root_actions'
_field_conditional_state_form_after_build in ./field_conditional_state.module
After build callback for the whole form.

File

./field_conditional_state.module, line 512
Main functions of this module.

Code

function _field_conditional_state_set_form_root_actions($actions) {
  $data =& drupal_static(__FUNCTION__, array());
  $data[] = $actions;
}