function roleassign_help in RoleAssign 6
Same name and namespace in other branches
- 8 roleassign.module \roleassign_help()
- 5 roleassign.module \roleassign_help()
- 7.2 roleassign.module \roleassign_help()
- 7 roleassign.module \roleassign_help()
Implementation of hook_help().
Returns various help texts.
File
- ./
roleassign.module, line 32 - Allows site administrators to further delegate the task of managing user's roles.
Code
function roleassign_help($path = "admin/help#roleassign", $arg) {
switch ($path) {
case 'admin/user/roleassign':
return _roleassign_settings_help();
case 'admin/help#roleassign':
return _roleassign_help_help();
}
}