You are here

function flexiform_get_groups in Flexiform 7

Retreive a list of flexiform groups.

5 calls to flexiform_get_groups()
FlexiformUIController::overviewForm in ./flexiform.admin.inc
Builds the entity overview form.
FlexiformWebformUIController::overviewForm in flexiform_webform/flexiform_webform.admin.inc
Builds the entity overview form.
flexiform_form in ./flexiform.admin.inc
Generates the model type editing form.
flexiform_rules_event_info in ./flexiform.rules.inc
Implements hook_rules_event_info().
flexiform_webform_form in flexiform_webform/flexiform_webform.admin.inc
Generates the model type editing form.

File

./flexiform.module, line 398
Module for the Flexiform system.

Code

function flexiform_get_groups() {
  $groups =& drupal_static(__FUNCTION__, NULL);
  if ($groups === NULL) {
    $groups = module_invoke_all('flexiform_group_info');
  }
  return $groups;
}