You are here

function seotools_permission in Drupal SEO Tools 7

Implements hook_permission().

File

./seotools.module, line 10
Code for the SEO Tools feature.

Code

function seotools_permission() {
  return array(
    'administer seotools' => array(
      'title' => t('Administer SEO Tools'),
      'description' => t('Can configure SEO Tools settings.'),
    ),
  );
}