function invite_theme in Invite 7.2
Same name and namespace in other branches
- 6.2 invite.module \invite_theme()
Implements hook_theme().
File
- ./
invite.module, line 76 - Allows your users to send and track invitations to join your site.
Code
function invite_theme() {
return array(
'invite_user_overview' => array(
'variables' => array(
'items' => NULL,
'page' => NULL,
),
'file' => 'invite.pages.inc',
),
);
}