function node_variable_group_info in Variable 6
Same name and namespace in other branches
- 7.2 includes/node.variable.inc \node_variable_group_info()
- 7 includes/node.variable.inc \node_variable_group_info()
Node module variable groups
File
- includes/
node.variable.inc, line 69 - Variable API module. Definition for Drupal core variables
Code
function node_variable_group_info() {
$groups['node_post_settings'] = array(
'title' => t('Post settings'),
'access' => 'administer nodes',
'path' => 'admin/content/node-settings',
);
return $groups;
}