function pmnote_permission in Drupal PM (Project Management) 8
Same name and namespace in other branches
- 7.3 pmnote/pmnote.module \pmnote_permission()
- 7 pmnote/pmnote.module \pmnote_permission()
- 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.'),
),
);
}