You are here

function pmperson_permission in Drupal PM (Project Management) 8

Same name and namespace in other branches
  1. 7.3 pmperson/pmperson.module \pmperson_permission()
  2. 7 pmperson/pmperson.module \pmperson_permission()
  3. 7.2 pmperson/pmperson.module \pmperson_permission()

Implements hook_permission().

File

pmperson/pmperson.module, line 67
Hook implementations for the pmperson module.

Code

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