You are here

function nodewords_perm in Nodewords: D6 Meta Tags 6.2

Same name and namespace in other branches
  1. 5 nodewords.module \nodewords_perm()
  2. 6.3 nodewords.module \nodewords_perm()
  3. 6 nodewords.module \nodewords_perm()

Implements hook_perm().

File

./nodewords.module, line 92
Implement an API that other modules can use to add meta tags.

Code

function nodewords_perm() {
  return array(
    'administer meta tags',
    'edit meta tags',
  );
}