function role_delegation_help in Role Delegation 5
Same name and namespace in other branches
- 8 role_delegation.module \role_delegation_help()
- 6 role_delegation.module \role_delegation_help()
- 7 role_delegation.module \role_delegation_help()
Implementation of hook_help().
File
- ./
role_delegation.module, line 17 - This module allows site administrators to grant some roles the authority to assign selected roles to users, without them needing the 'administer access control' permission.
Code
function role_delegation_help($section) {
switch ($section) {
case 'admin/help#role_delegation':
return '<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 access control</em> permission.') . '</p><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>';
}
}