You are here

function advanced_help_permission in Advanced Help 7

Implements hook_permission().

File

./advanced_help.module, line 549
Pluggable system to provide advanced help facilities for Drupal and modules.

Code

function advanced_help_permission() {
  return array(
    'view advanced help topic' => array(
      'title' => t('View help topics'),
    ),
    'view advanced help popup' => array(
      'title' => t('View help popups'),
    ),
    'view advanced help index' => array(
      'title' => t('View help index'),
    ),
  );
}