You are here

function forum_variable_group_info in Variable 7

Same name and namespace in other branches
  1. 7.2 includes/forum.variable.inc \forum_variable_group_info()

Implements hook_variable_group_info().

File

includes/forum.variable.inc, line 56
Variable API module. Definition for Drupal core variables

Code

function forum_variable_group_info() {
  $groups['forum_settings'] = array(
    'title' => t('Forum settings'),
    'access' => 'administer forums',
    'path' => 'admin/structure/menu/settings',
  );
  return $groups;
}