You are here

function robotstxt_variable_group_info in RobotsTxt 7

Implements hook_variable_group_info().

File

./robotstxt.variable.inc, line 26
Definition of variables for Variable API module.

Code

function robotstxt_variable_group_info() {
  $groups['robotstxt'] = array(
    'title' => t('RobotsTxt'),
    'description' => t('Configure robots.txt file.'),
    'access' => 'administer robots.txt',
    'path' => array(
      'admin/config/search/robotstxt',
    ),
  );
  return $groups;
}