function node_variable_group_info in Variable 7.2
Same name and namespace in other branches
- 6 includes/node.variable.inc \node_variable_group_info()
- 7 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;
}