You are here

public function Invite::invitee in Invite 7.4

Returns the user owning this profile.

File

includes/invite.controller.inc, line 127

Class

Invite
Invite class.

Code

public function invitee() {
  if (!empty($this->invitee)) {
    return user_load($this->invitee);
  }
  else {
    return FALSE;
  }
}