You are here

function invite_theme in Invite 6.2

Same name and namespace in other branches
  1. 7.2 invite.module \invite_theme()

Implementation of hook_theme().

File

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

Code

function invite_theme() {
  return array(
    'invite_form' => array(
      'arguments' => array(
        'form' => NULL,
      ),
    ),
    'invite_user_overview' => array(
      'arguments' => array(
        'items' => NULL,
      ),
      'file' => 'invite_admin.inc',
    ),
    'invite_token_help' => array(
      'arguments' => array(
        'type' => NULL,
        'prefix' => NULL,
        'suffix' => NULL,
      ),
      'file' => 'invite_token.inc',
    ),
  );
}