You are here

function advanced_help_perm in Advanced Help 6

Same name and namespace in other branches
  1. 5 advanced_help.module \advanced_help_perm()

Implements hook_perm().

File

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

Code

function advanced_help_perm() {
  return array(
    'view advanced help topic',
    'view advanced help popup',
    'view advanced help index',
  );
}