You are here

function seo_permission in Drupal SEO Essentials 7

Implements hook_permission().

File

./seo.module, line 12

Code

function seo_permission() {
  return array(
    'administer seo' => array(
      'title' => t('Administer SEO Essentials'),
      'description' => t('Can configure SEO settings.'),
    ),
  );
}