You are here

function invite_view in Invite 7.4

Invte view callback.

Parameters

Invite $invite:

Return value

bool

1 string reference to 'invite_view'
invite_menu in ./invite.module
Implements hook_menu().

File

includes/invite.pages.inc, line 14

Code

function invite_view($invite) {
  drupal_set_title(entity_label('invite', $invite));
  return entity_view('invite', array(
    entity_id('invite', $invite) => $invite,
  ), 'full');
}