示例#1
0
 /**
  * Получить юзера по ключу сессии
  *
  * @param   string $sKey    Сессионный ключ
  *
  * @return  ModuleUser_EntityUser|null
  */
 public function GetUserBySessionKey($sKey)
 {
     $nUserId = $this->oMapper->GetUserBySessionKey($sKey);
     return $this->GetUserById($nUserId);
 }