You are here

function pmnote_permission in Drupal PM (Project Management) 7.3

Same name and namespace in other branches
  1. 8 pmnote/pmnote.module \pmnote_permission()
  2. 7 pmnote/pmnote.module \pmnote_permission()
  3. 7.2 pmnote/pmnote.module \pmnote_permission()

Implements hook_permission().

File

pmnote/pmnote.module, line 26
Functions for the PM Note module.

Code

function pmnote_permission() {
  return array(
    'Project Management note: access' => array(
      'title' => t('Access PM Note'),
      'description' => t('Allows the user to see pages and blocks associated with the PM Note module, but does not control which notes are shown within them.'),
    ),
  );
}