You are here

function robotstxt_permission in RobotsTxt 7

Implements hook_permission().

File

./robotstxt.module, line 24

Code

function robotstxt_permission() {
  return array(
    'administer robots.txt' => array(
      'title' => t('Administer robots.txt'),
      'description' => t('Perform maintenance tasks for robots.txt.'),
    ),
  );
}