You are here

function invite_user_overview in Invite 5.2

Same name and namespace in other branches
  1. 6.2 invite_admin.inc \invite_user_overview()
  2. 7.2 invite.pages.inc \invite_user_overview()

Menu callback; display an overview of sent invitations.

Parameters

$page: Which invites to list: accepted, pending, or expired.

1 string reference to 'invite_user_overview'
invite_menu in ./invite.module
Implementation of hook_menu().

File

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

Code

function invite_user_overview($page = 'accepted') {
  require_once drupal_get_path('module', 'invite') . '/invite_admin.inc';
  return _invite_user_overview($page);
}