You are here

function _roleassign_settings_help in RoleAssign 5

Same name and namespace in other branches
  1. 6 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 332

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'),
  ));
}