You are here

function protected_node_variable_group_info in Protected Node 7

Same name and namespace in other branches
  1. 1.0.x protected_node.variable.inc \protected_node_variable_group_info()

Implements hook_variable_group_info().

File

./protected_node.variable.inc, line 11
Variable information.

Code

function protected_node_variable_group_info() {
  $groups['protected_node'] = array(
    'title' => t('Protected Node'),
    'description' => t('Configuration for the Protected Node module.'),
    'access' => 'administer site configuration',
    'path' => array(
      'admin/config/content/protected_node',
    ),
  );
  return $groups;
}