function invite_help in Invite 5.2
Same name and namespace in other branches
- 8 invite.module \invite_help()
- 5 invite.module \invite_help()
- 6.2 invite.module \invite_help()
- 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();
}
}
}