You are here

function system_variable_group_info in Variable 6

Same name and namespace in other branches
  1. 7.2 includes/system.variable.inc \system_variable_group_info()
  2. 7 includes/system.variable.inc \system_variable_group_info()

Node module variable groups

File

includes/system.variable.inc, line 67
Variable API module. Definition for Drupal core variables

Code

function system_variable_group_info() {
  $groups['system_site_information'] = array(
    'title' => t('Site information'),
    'access' => 'administer site configuration',
    'path' => 'admin/settings',
  );

  // Group for variable that have no group
  $groups['others'] = array(
    'title' => t('Others'),
    'access' => 'administer site configuration',
  );
  return $groups;
}