You are here

function invite_help in Invite 5.2

Same name and namespace in other branches
  1. 8 invite.module \invite_help()
  2. 5 invite.module \invite_help()
  3. 6.2 invite.module \invite_help()
  4. 7.2 invite.module \invite_help()

Implementation of hook_help().

Returns appropriate help text for all three invite status pages.

File

./invite.module, line 29
Allows your users to send and track invitations to join your site.

Code

function invite_help($section) {
  if (arg(0) == 'user' && is_numeric(arg(1)) && arg(2) == 'invites') {
    return _invite_user_help($section, arg(1));
  }
  else {
    if ($section == 'admin/help#invite') {
      return _invite_module_help();
    }
  }
}