_userRole = $userType; $this->_userId = $userId; } public function getType() { return $this->userRole; } public function getId() { return $this->_userId; } public function isHost($showId) { return CcShowHostsQuery::create()->filterByDbShow($showId)->filterByDbHost($this->_userId)->count() > 0; } public function isAdmin() { return $this->_userRole === 'A'; } public static function addUser($data) { $user = new CcSubjs(); $user->setDbLogin($data['login']); $user->setDbPass(md5($data['password'])); $user->setDbFirstName($data['first_name']); $user->setDbLastName($data['last_name']); $user->setDbType($data['type']); $user->save(); } public static function getUsers($type=NULL) { global $CC_DBC; $sql; $sql_gen = "SELECT id, login, type FROM cc_subjs "; $sql = $sql_gen; if(!is_null($type)){ if(is_array($type)) { for($i=0; $iGetAll($sql); } public static function getHosts() { return User::getUsers(array('H', 'A')); } }