You are here

function roleassign_help in RoleAssign 6

Same name and namespace in other branches
  1. 8 roleassign.module \roleassign_help()
  2. 5 roleassign.module \roleassign_help()
  3. 7.2 roleassign.module \roleassign_help()
  4. 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();
  }
}