Example #1
0
 /**
  * Gets that users email
  *
  * @param $user_id
  *
  * @return bool|mixed
  */
 public function GetEmail($user_id)
 {
     if ($this->user->GetUser($user_id) != null) {
         return $this->user->GetEmail($user_id);
     }
     return null;
 }