本文整理汇总了PHP中ModuleUser_EntityUser::getActivate方法的典型用法代码示例。如果您正苦于以下问题:PHP ModuleUser_EntityUser::getActivate方法的具体用法?PHP ModuleUser_EntityUser::getActivate怎么用?PHP ModuleUser_EntityUser::getActivate使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类ModuleUser_EntityUser
的用法示例。
在下文中一共展示了ModuleUser_EntityUser::getActivate方法的4个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的PHP代码示例。
示例1: Update
/**
* Обновляет юзера
*
* @param ModuleUser_EntityUser $oUser Объект пользователя
* @return bool
*/
public function Update(ModuleUser_EntityUser $oUser)
{
$sql = "UPDATE " . Config::Get('db.table.user') . "\n SET\n user_password = ? ,\n user_mail = ? ,\n user_skill = ? ,\n user_date_activate = ? ,\n user_date_comment_last = ? ,\n user_rating = ? ,\n user_count_vote = ? ,\n user_activate = ? ,\n user_activate_key = ? ,\n user_profile_name = ? ,\n user_profile_sex = ? ,\n user_profile_country = ? ,\n user_profile_region = ? ,\n user_profile_city = ? ,\n user_profile_birthday = ? ,\n user_profile_about = ? ,\n user_profile_date = ? ,\n user_profile_avatar = ? ,\n user_profile_foto = ? ,\n user_settings_notice_new_topic = ? ,\n user_settings_notice_new_comment = ? ,\n user_settings_notice_new_talk = ? ,\n user_settings_notice_reply_comment = ? ,\n user_settings_notice_new_friend = ? ,\n user_settings_timezone = ?\n WHERE user_id = ?\n ";
if ($this->oDb->query($sql, $oUser->getPassword(), $oUser->getMail(), $oUser->getSkill(), $oUser->getDateActivate(), $oUser->getDateCommentLast(), $oUser->getRating(), $oUser->getCountVote(), $oUser->getActivate(), $oUser->getActivateKey(), $oUser->getProfileName(), $oUser->getProfileSex(), $oUser->getProfileCountry(), $oUser->getProfileRegion(), $oUser->getProfileCity(), $oUser->getProfileBirthday(), $oUser->getProfileAbout(), $oUser->getProfileDate(), $oUser->getProfileAvatar(), $oUser->getProfileFoto(), $oUser->getSettingsNoticeNewTopic(), $oUser->getSettingsNoticeNewComment(), $oUser->getSettingsNoticeNewTalk(), $oUser->getSettingsNoticeReplyComment(), $oUser->getSettingsNoticeNewFriend(), $oUser->getSettingsTimezone(), $oUser->getId())) {
return true;
}
return false;
}
示例2: Authorization
/**
* Авторизация юзера
*
* @param ModuleUser_EntityUser $oUser - Объект пользователя
* @param bool $bRemember - Запоминать пользователя или нет
* @param string $sSessionKey - Ключ сессии
*
* @return bool
*/
public function Authorization(ModuleUser_EntityUser $oUser, $bRemember = true, $sSessionKey = null)
{
if (!$oUser->getId() || !$oUser->getActivate()) {
return false;
}
// * Получаем ключ текущей сессии
if (is_null($sSessionKey)) {
$sSessionKey = E::ModuleSession()->GetKey();
}
// * Создаём новую сессию
if (!$this->CreateSession($oUser, $sSessionKey)) {
return false;
}
// * Запоминаем в сесси юзера
E::ModuleSession()->Set('user_id', $oUser->getId());
$this->oUserCurrent = $oUser;
// * Ставим куку
if ($bRemember) {
E::ModuleSession()->SetCookie($this->GetKeyName(), $sSessionKey, Config::Get('sys.cookie.time'));
}
return true;
}
示例3: Authorization
/**
* Авторизовывает юзера
*
* @param ModuleUser_EntityUser $oUser
* @return unknown
*/
public function Authorization(ModuleUser_EntityUser $oUser, $bRemember = true, $sKey = null)
{
if (!$oUser->getId() or !$oUser->getActivate()) {
return false;
}
/**
* Генерим новый ключ авторизаии для куков
*/
if (is_null($sKey)) {
$sKey = md5(func_generator() . time() . $oUser->getLogin());
}
/**
* Создаём новую сессию
*/
if (!$this->CreateSession($oUser, $sKey)) {
return false;
}
/**
* Запоминаем в сесси юзера
*/
$this->Session_Set('user_id', $oUser->getId());
$this->oUserCurrent = $oUser;
/**
* Ставим куку
*/
if ($bRemember) {
setcookie('key', $sKey, time() + 60 * 60 * 24 * 3, Config::Get('sys.cookie.path'), Config::Get('sys.cookie.host'));
}
}
示例4: Authorization
/**
* Авторизовывает юзера
*
* @param ModuleUser_EntityUser $oUser Объект пользователя
* @param bool $bRemember Запоминать пользователя или нет
* @param string $sKey Уникальный ключ сессии
* @return bool
*/
public function Authorization(ModuleUser_EntityUser $oUser, $bRemember = true, $sKey = null)
{
if (!$oUser->getId() or !$oUser->getActivate()) {
return false;
}
/**
* Создаём новую сессию
*/
if (!$this->CreateSession($oUser, $sKey)) {
return false;
}
/**
* Запоминаем в сесси юзера
*/
$this->Session_Set('user_id', $oUser->getId());
$this->Session_Set('session_key', $this->oSession->getKey());
$this->oUserCurrent = $oUser;
/**
* Ставим куку
*/
if ($bRemember) {
$this->Session_SetCookie('key', $this->oSession->getKey(), time() + Config::Get('module.user.time_login_remember'), false, true);
}
return true;
}