You are here

function node_variable_group_info in Variable 7

Same name and namespace in other branches
  1. 6 includes/node.variable.inc \node_variable_group_info()
  2. 7.2 includes/node.variable.inc \node_variable_group_info()

Implements hook_variable_group_info().

File

includes/node.variable.inc, line 62
Variable API module. Definition for Drupal core variables

Code

function node_variable_group_info() {
  $groups['node_type_settings'] = array(
    'title' => t('Node type settings'),
    'description' => t('Settings for each node type.'),
    'access' => 'administer nodes',
    'path' => 'admin/structure/types',
  );
  return $groups;
}