You are here

function metatags_quick_permission in Meta tags quick 7.2

Same name and namespace in other branches
  1. 8.3 metatags_quick.module \metatags_quick_permission()

Implements hook_permission

See also

http://api.drupal.org/api/drupal/modules--system--system.api.php/functio...

File

./metatags_quick.module, line 63
Quick and dirty implementation of meta tags for drupal 7 Module defines new field type 'meta'. Fields of this type are not displayed in HTML. Instead, they add html meta to the head section.

Code

function metatags_quick_permission() {
  return array(
    'administer metatags_quick' => array(
      'title' => t('Administer metatags(quick)'),
    ),
    'edit metatags_quick' => array(
      'title' => t('Edit meta tags'),
    ),
    'edit path_based metatags_quick' => array(
      'title' => t('Edit path based meta tags'),
    ),
  );
}