function _roleassign_settings_help in RoleAssign 6
Same name and namespace in other branches
- 5 roleassign.module \_roleassign_settings_help()
Returns short helptext to be used on the settings page.
1 call to _roleassign_settings_help()
- roleassign_help in ./
roleassign.module - Implementation of hook_help().
File
- ./
roleassign.module, line 318 - Allows site administrators to further delegate the task of managing user's roles.
Code
function _roleassign_settings_help() {
return t('<p>Users with both <code>administer users</code> and <code>assign roles</code> permissions are allowed to assign the roles selected below. For more information, see the !help.</p>', array(
'!help' => l(t('help page'), 'admin/help/roleassign'),
));
}