예제 #1
0
 /**
  * Get the email from user id
  *
  * @param int $userid
  * @return string|false
  */
 public function getEmailFromId($h, $userid = 0)
 {
     //$email = \HotaruModels\User::getEmailFromId($userid);
     $email = \Hotaru\Models2\User::getEmailFromId($h, $userid);
     if ($email) {
         return $email;
     } else {
         return false;
     }
 }