You are here

function role_delegation_help in Role Delegation 7

Same name and namespace in other branches
  1. 8 role_delegation.module \role_delegation_help()
  2. 5 role_delegation.module \role_delegation_help()
  3. 6 role_delegation.module \role_delegation_help()

Implements hook_help().

File

./role_delegation.module, line 17
This module allows site administrators to grant some roles the authority to change roles assigned to users, without them needing the 'administer access control' permission.

Code

function role_delegation_help($path, $arg) {
  switch ($path) {
    case 'admin/help#role_delegation':
      $output = '<p>' . t('This module allows site administrators to grant some roles the authority to assign selected roles to users, without them needing the <em>administer permissions</em> permission.') . '</p>';
      $output .= '<p>' . t('It provides its own tab in the user profile so that roles can be assigned without needing access to the user edit form.') . '</p>';
      return $output;
  }
}