You are here

function variable_variable_group_info in Variable 7.2

Same name and namespace in other branches
  1. 6 variable.variable.inc \variable_variable_group_info()
  2. 7 variable.variable.inc \variable_variable_group_info()

Implements hook_variable_group_info().

File

./variable.variable.inc, line 10
Variable module hook implementations

Code

function variable_variable_group_info() {

  // Group for variable that have no group
  $groups['default'] = array(
    'title' => t('Other'),
    'description' => t("Variables that don't belong to any other group."),
  );
  $groups['debug'] = array(
    'title' => t('Debug'),
    'description' => t('Debug and development options.'),
  );
  $groups['variable'] = array(
    'title' => t('Variable'),
    'description' => t('Variables that contain metadata about the variable system.'),
  );
  return $groups;
}