本文整理汇总了PHP中ModuleUser_EntityUser类的典型用法代码示例。如果您正苦于以下问题:PHP ModuleUser_EntityUser类的具体用法?PHP ModuleUser_EntityUser怎么用?PHP ModuleUser_EntityUser使用的例子?那么恭喜您, 这里精选的类代码示例或许可以为您提供帮助。
在下文中一共展示了ModuleUser_EntityUser类的15个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的PHP代码示例。
示例1: SendUserMarkImageNew
/**
* Отправляет пользователю сообщение о добавлении его в друзья
*
* @param ModuleUser_EntityUser $oUserTo
* @param ModuleUser_EntityUser $oUserFrom
* @param string $sText
*/
public function SendUserMarkImageNew(ModuleUser_EntityUser $oUserTo, ModuleUser_EntityUser $oUserFrom, $sText)
{
/**
* Если в конфигураторе указан отложенный метод отправки,
* то добавляем задание в массив. В противном случае,
* сразу отсылаем на email
*/
if (Config::Get('module.notify.delayed')) {
$oNotifyTask = Engine::GetEntity('Notify_Task', array('user_mail' => $oUserTo->getMail(), 'user_login' => $oUserTo->getLogin(), 'notify_text' => $sText, 'notify_subject' => $this->Lang_Get('plugin.lsgallery.lsgallery_marked_subject'), 'date_created' => date("Y-m-d H:i:s"), 'notify_task_status' => self::NOTIFY_TASK_STATUS_NULL));
if (Config::Get('module.notify.insert_single')) {
$this->aTask[] = $oNotifyTask;
} else {
$this->oMapper->AddTask($oNotifyTask);
}
} else {
/**
* Отправляем мыло
*/
$this->Mail_SetAdress($oUserTo->getMail(), $oUserTo->getLogin());
$this->Mail_SetSubject($this->Lang_Get('plugin.lsgallery.lsgallery_marked_subject'));
$this->Mail_SetBody($sText);
$this->Mail_setHTML();
$this->Mail_Send();
}
}
示例2: Authorization
/**
* Авторизовывает юзера
*
* @param ModuleUser_EntityUser $oUser Объект пользователя
* @param bool $bRemember Запоминать пользователя или нет
* @param string $sKey Ключ авторизации для куков
* @return bool
*/
public function Authorization(ModuleUser_EntityUser $oUser, $bRemember = true, $sKey = null)
{
if (!Config::Get('plugin.blacklist.check_authorization') || $oUser && $oUser->isAdministrator() || $oUser && !$this->PluginBlacklist_ModuleBlacklist_blackMail($oUser->getMail(), $oUser->getLogin())) {
return parent::Authorization($oUser, $bRemember, $sKey);
}
$this->Message_AddErrorSingle($this->Lang_Get(Config::Get('plugin.blacklist.check_ip_exact') ? 'plugin.blacklist.user_in_exact_blacklist' : 'plugin.blacklist.user_in_blacklist'));
return false;
}
示例3: updateUserCat
protected function updateUserCat(ModuleUser_EntityUser $oUser)
{
$sql = 'UPDATE ' . Config::Get('db.table.user') . '
SET
user_cat = ?
WHERE
user_id = ?d';
if ($this->oDb->query($sql, $oUser->getCategory(), $oUser->getId()) !== null) {
return true;
}
return false;
}
示例4: CanPostTestimonialTime
/**
* Проверяет может ли пользователь создавать запись по времени
*/
public function CanPostTestimonialTime(ModuleUser_EntityUser $oUser)
{
// Для администраторов ограничение по времени не действует
if ($oUser->isAdministrator() or Config::Get('plugin.testimonials.acl.create.limit_time') == 0 or $oUser->getRating() >= Config::Get('plugin.testimonials.acl.create.limit_time_rating')) {
return true;
}
/**
* Проверяем, если топик опубликованный меньше чем acl.create.topic.limit_time секунд назад
*/
$aTestimonials = $this->PluginTestimonials_Testimonials_GetTestimonialsItemsByFilter(array('#page' => array(1, 20), '#order' => array('id' => 'desc'), 'user_id' => $oUser->getId(), 'date_add >' => date("Y-m-d H:i:s", time() - Config::Get('plugin.testimonials.acl.create.limit_time'))));
if (isset($aTestimonials['count']) and $aTestimonials['count'] > 0) {
return false;
}
return true;
}
示例5: VoteImage
/**
* Vote for image
*
* @param ModuleUser_EntityUser $oUser
* @param PluginLsgallery_ModuleImage_EntityImage $oImage
* @param int $iValue
* @return int
*/
public function VoteImage(ModuleUser_EntityUser $oUser, PluginLsgallery_ModuleImage_EntityImage $oImage, $iValue)
{
$skill = $oUser->getSkill();
$iDeltaRating = $iValue;
if ($skill >= 100 and $skill < 250) {
$iDeltaRating = $iValue * 2;
} elseif ($skill >= 250 and $skill < 400) {
$iDeltaRating = $iValue * 3;
} elseif ($skill >= 400) {
$iDeltaRating = $iValue * 4;
}
$oImage->setRating($oImage->getRating() + $iDeltaRating);
/**
* Начисляем силу и рейтинг автору топика, используя логарифмическое распределение
*/
$iMinSize = 0.1;
$iMaxSize = 8;
$iSizeRange = $iMaxSize - $iMinSize;
$iMinCount = log(0 + 1);
$iMaxCount = log(500 + 1);
$iCountRange = $iMaxCount - $iMinCount;
if ($iCountRange == 0) {
$iCountRange = 1;
}
if ($skill > 50 and $skill < 200) {
$skill_new = $skill / 70;
} elseif ($skill >= 200) {
$skill_new = $skill / 10;
} else {
$skill_new = $skill / 100;
}
$iDelta = $iMinSize + (log($skill_new + 1) - $iMinCount) * ($iSizeRange / $iCountRange);
/**
* Сохраняем силу и рейтинг
*/
$oUserImage = $this->User_GetUserById($oImage->getUserId());
$iSkillNew = $oUserImage->getSkill() + $iValue * $iDelta;
$iSkillNew = $iSkillNew < 0 ? 0 : $iSkillNew;
$oUserImage->setSkill($iSkillNew);
$oUserImage->setRating($oUserImage->getRating() + $iValue * $iDelta / 2.73);
$this->User_Update($oUserImage);
return $iDeltaRating;
}
示例6: VoteForumPost
/**
* Расчет рейтинга и силы при гоосовании за пост на форуме
*
* @param ModuleUser_EntityUser $oUser Объект пользователя, который голосует
* @param PluginForum_ModuleForum_EntityPost $oPost Объект поста
* @param int $iValue
* @return int
*/
public function VoteForumPost(ModuleUser_EntityUser $oUser, PluginForum_ModuleForum_EntityPost $oPost, $iValue)
{
/**
* Устанавливаем рейтинг поста
*/
$iDeltaRating = $iValue;
$oPost->setRating($oPost->getRating() + $iDeltaRating);
/**
* Начисляем силу и рейтинг автору топика, используя логарифмическое распределение
*/
$iMinSize = 0.1;
$iMaxSize = 8;
$iSizeRange = $iMaxSize - $iMinSize;
$iMinCount = log(0 + 1);
$iMaxCount = log(500 + 1);
$iCountRange = $iMaxCount - $iMinCount;
if ($iCountRange == 0) {
$iCountRange = 1;
}
$skill = $oUser->getSkill();
if ($skill > 50 and $skill < 200) {
$skill_new = $skill / 70;
} elseif ($skill >= 200) {
$skill_new = $skill / 10;
} else {
$skill_new = $skill / 100;
}
$iDelta = $iMinSize + (log($skill_new + 1) - $iMinCount) * ($iSizeRange / $iCountRange);
/**
* Сохраняем силу и рейтинг
*/
$oUser = $this->User_GetUserById($oPost->getUserId());
$iSkillNew = $oUser->getSkill() + $iValue * $iDelta;
$iSkillNew = $iSkillNew < 0 ? 0 : $iSkillNew;
$oUser->setSkill($iSkillNew);
$oUser->setRating($oUser->getRating() + $iValue * $iDelta / 2.73);
$this->User_Update($oUser);
return $iDeltaRating;
}
示例7: EventShowTopics
/**
* Выводит список топиков
*
*/
protected function EventShowTopics()
{
/**
* Меню
*/
$this->sMenuSubItemSelect = $this->sCurrentEvent;
/**
* Передан ли номер страницы
*/
$iPage = $this->GetParamEventMatch(0, 2) ? $this->GetParamEventMatch(0, 2) : 1;
/**
* Получаем список топиков
*/
$aResult = E::ModuleTopic()->GetTopicsPersonalByUser($this->oUserCurrent->getId(), $this->sCurrentEvent == 'published' ? 1 : 0, $iPage, Config::Get('module.topic.per_page'));
$aTopics = $aResult['collection'];
/**
* Формируем постраничность
*/
$aPaging = E::ModuleViewer()->MakePaging($aResult['count'], $iPage, Config::Get('module.topic.per_page'), Config::Get('pagination.pages.count'), R::GetPath('content') . $this->sCurrentEvent);
/**
* Загружаем переменные в шаблон
*/
E::ModuleViewer()->Assign('aPaging', $aPaging);
E::ModuleViewer()->Assign('aTopics', $aTopics);
E::ModuleViewer()->AddHtmlTitle(E::ModuleLang()->Get('topic_menu_' . $this->sCurrentEvent));
}
示例8: EventUnsubscribe
/**
* Отписка от блога или пользователя
*
*/
protected function EventUnsubscribe()
{
// * Устанавливаем формат Ajax ответа
E::ModuleViewer()->SetResponseAjax('json');
if (!F::GetRequest('id')) {
E::ModuleMessage()->AddError(E::ModuleLang()->Get('system_error'), E::ModuleLang()->Get('error'));
return;
}
$sType = F::GetRequestStr('type');
$iType = null;
// * Определяем от чего отписываемся
switch ($sType) {
case 'blogs':
case 'blog':
$iType = ModuleUserfeed::SUBSCRIBE_TYPE_BLOG;
break;
case 'users':
case 'user':
$iType = ModuleUserfeed::SUBSCRIBE_TYPE_USER;
break;
default:
E::ModuleMessage()->AddError(E::ModuleLang()->Get('system_error'), E::ModuleLang()->Get('error'));
return;
}
// * Отписываем пользователя
E::ModuleUserfeed()->UnsubscribeUser($this->oUserCurrent->getId(), $iType, F::GetRequestStr('id'));
E::ModuleMessage()->AddNotice(E::ModuleLang()->Get('userfeed_subscribes_updated'), E::ModuleLang()->Get('attention'));
}
示例9: EventUnsubscribe
/**
* Отписка от блога или пользователя
*
*/
protected function EventUnsubscribe()
{
/**
* Устанавливаем формат Ajax ответа
*/
$this->Viewer_SetResponseAjax('json');
if (!getRequest('id')) {
$this->Message_AddError($this->Lang_Get('system_error'), $this->Lang_Get('error'));
return;
}
$sType = getRequestStr('type');
$iType = null;
/**
* Определяем от чего отписываемся
*/
switch ($sType) {
case 'blogs':
$iType = ModuleUserfeed::SUBSCRIBE_TYPE_BLOG;
break;
case 'users':
$iType = ModuleUserfeed::SUBSCRIBE_TYPE_USER;
break;
default:
$this->Message_AddError($this->Lang_Get('system_error'), $this->Lang_Get('error'));
return;
}
/**
* Отписываем пользователя
*/
$this->Userfeed_unsubscribeUser($this->oUserCurrent->getId(), $iType, getRequestStr('id'));
$this->Message_AddNotice($this->Lang_Get('userfeed_subscribes_updated'), $this->Lang_Get('attention'));
}
示例10: EventAjaxVote
/**
* Голосование админа
*/
public function EventAjaxVote()
{
// * Устанавливаем формат ответа
E::ModuleViewer()->SetResponseAjax('json');
if (!E::IsAdmin()) {
E::ModuleMessage()->AddErrorSingle(E::ModuleLang()->Get('need_authorization'), E::ModuleLang()->Get('error'));
return;
}
$nUserId = $this->GetPost('idUser');
if (!$nUserId || !($oUser = E::ModuleUser()->GetUserById($nUserId))) {
E::ModuleMessage()->AddErrorSingle(E::ModuleLang()->Get('user_not_found'), E::ModuleLang()->Get('error'));
return;
}
$nValue = $this->GetPost('value');
$oUserVote = E::GetEntity('Vote');
$oUserVote->setTargetId($oUser->getId());
$oUserVote->setTargetType('user');
$oUserVote->setVoterId($this->oUserCurrent->getId());
$oUserVote->setDirection($nValue);
$oUserVote->setDate(F::Now());
$iVal = (double) E::ModuleRating()->VoteUser($this->oUserCurrent, $oUser, $nValue);
$oUserVote->setValue($iVal);
$oUser->setCountVote($oUser->getCountVote() + 1);
if (E::ModuleVote()->AddVote($oUserVote) && E::ModuleUser()->Update($oUser)) {
E::ModuleViewer()->AssignAjax('iRating', $oUser->getRating());
E::ModuleViewer()->AssignAjax('iSkill', $oUser->getSkill());
E::ModuleViewer()->AssignAjax('iCountVote', $oUser->getCountVote());
E::ModuleMessage()->AddNoticeSingle(E::ModuleLang()->Get('user_vote_ok'), E::ModuleLang()->Get('attention'));
} else {
E::ModuleMessage()->AddErrorSingle(E::ModuleLang()->Get('action.admin.vote_error'), E::ModuleLang()->Get('error'));
}
}
示例11: EventShutdown
/**
* Обработка завершения работу экшена
*/
public function EventShutdown()
{
if (!E::User()) {
return;
}
$iCountTalkFavourite = E::ModuleTalk()->GetCountTalksFavouriteByUserId($this->oUserCurrent->getId());
E::ModuleViewer()->Assign('iCountTalkFavourite', $iCountTalkFavourite);
$iUserId = E::UserId();
// Get stats of various user publications topics, comments, images, etc. and stats of favourites
$aProfileStats = E::ModuleUser()->GetUserProfileStats($iUserId);
// Получим информацию об изображениях пользователя
/** @var ModuleMresource_EntityMresourceCategory[] $aUserImagesInfo */
$aUserImagesInfo = E::ModuleMresource()->GetAllImageCategoriesByUserId($iUserId);
E::ModuleViewer()->Assign('oUserProfile', E::User());
E::ModuleViewer()->Assign('aProfileStats', $aProfileStats);
E::ModuleViewer()->Assign('aUserImagesInfo', $aUserImagesInfo);
// Old style skin compatibility
E::ModuleViewer()->Assign('iCountTopicUser', $aProfileStats['count_topics']);
E::ModuleViewer()->Assign('iCountCommentUser', $aProfileStats['count_comments']);
E::ModuleViewer()->Assign('iCountTopicFavourite', $aProfileStats['favourite_topics']);
E::ModuleViewer()->Assign('iCountCommentFavourite', $aProfileStats['favourite_comments']);
E::ModuleViewer()->Assign('iCountNoteUser', $aProfileStats['count_usernotes']);
E::ModuleViewer()->Assign('iCountWallUser', $aProfileStats['count_wallrecords']);
E::ModuleViewer()->Assign('iPhotoCount', $aProfileStats['count_images']);
E::ModuleViewer()->Assign('iCountCreated', $aProfileStats['count_created']);
E::ModuleViewer()->Assign('iCountFavourite', $aProfileStats['count_favourites']);
E::ModuleViewer()->Assign('iCountFriendsUser', $aProfileStats['count_friends']);
E::ModuleViewer()->Assign('sMenuSubItemSelect', $this->sMenuSubItemSelect);
E::ModuleViewer()->Assign('sMenuSubItemSelect', $this->sMenuSubItemSelect);
// * Передаем константы состояний участников разговора
E::ModuleViewer()->Assign('TALK_USER_ACTIVE', ModuleTalk::TALK_USER_ACTIVE);
E::ModuleViewer()->Assign('TALK_USER_DELETE_BY_SELF', ModuleTalk::TALK_USER_DELETE_BY_SELF);
E::ModuleViewer()->Assign('TALK_USER_DELETE_BY_AUTHOR', ModuleTalk::TALK_USER_DELETE_BY_AUTHOR);
}
示例12: EventShutdown
/**
* Обработка завершения работу экшена
*/
public function EventShutdown()
{
if (!$this->oUserCurrent) {
return;
}
$iCountTalkFavourite = $this->Talk_GetCountTalksFavouriteByUserId($this->oUserCurrent->getId());
$this->Viewer_Assign('iCountTalkFavourite', $iCountTalkFavourite);
$iCountTopicFavourite = $this->Topic_GetCountTopicsFavouriteByUserId($this->oUserCurrent->getId());
$iCountTopicUser = $this->Topic_GetCountTopicsPersonalByUser($this->oUserCurrent->getId(), 1);
$iCountCommentUser = $this->Comment_GetCountCommentsByUserId($this->oUserCurrent->getId(), 'topic');
$iCountCommentFavourite = $this->Comment_GetCountCommentsFavouriteByUserId($this->oUserCurrent->getId());
$iCountNoteUser = $this->User_GetCountUserNotesByUserId($this->oUserCurrent->getId());
$this->Viewer_Assign('oUserProfile', $this->oUserCurrent);
$this->Viewer_Assign('iCountWallUser', $this->Wall_GetCountWall(array('wall_user_id' => $this->oUserCurrent->getId(), 'pid' => null)));
/**
* Общее число публикация и избранного
*/
$this->Viewer_Assign('iCountCreated', $iCountNoteUser + $iCountTopicUser + $iCountCommentUser);
$this->Viewer_Assign('iCountFavourite', $iCountCommentFavourite + $iCountTopicFavourite);
$this->Viewer_Assign('iCountFriendsUser', $this->User_GetCountUsersFriend($this->oUserCurrent->getId()));
$this->Viewer_Assign('sMenuProfileItemSelect', $this->sMenuProfileItemSelect);
$this->Viewer_Assign('sMenuSubItemSelect', $this->sMenuSubItemSelect);
/**
* Передаем во вьевер константы состояний участников разговора
*/
$this->Viewer_Assign('TALK_USER_ACTIVE', ModuleTalk::TALK_USER_ACTIVE);
$this->Viewer_Assign('TALK_USER_DELETE_BY_SELF', ModuleTalk::TALK_USER_DELETE_BY_SELF);
$this->Viewer_Assign('TALK_USER_DELETE_BY_AUTHOR', ModuleTalk::TALK_USER_DELETE_BY_AUTHOR);
}
示例13: EventAjaxRemoveUser
/**
* Отписка от пользователя
*/
protected function EventAjaxRemoveUser()
{
$iUserId = (int) getRequestStr('user_id');
/**
* Устанавливаем формат Ajax ответа
*/
$this->Viewer_SetResponseAjax('json');
/**
* Пользователь авторизован?
*/
if (!$this->oUserCurrent) {
return $this->EventErrorDebug();
}
/**
* Пользователь с таким ID существует?
*/
if (!$this->User_GetUserById($iUserId)) {
return $this->EventErrorDebug();
}
/**
* Отписываем
*/
$this->Stream_unsubscribeUser($this->oUserCurrent->getId(), $iUserId);
$this->Message_AddNotice($this->Lang_Get('common.success.remove'), $this->Lang_Get('common.attention'));
}
示例14: AjaxResponseComment
/**
* Получение новых комментариев
*
*/
protected function AjaxResponseComment()
{
/**
* Устанавливаем формат Ajax ответа
*/
$this->Viewer_SetResponseAjax('json');
/**
* Пользователь авторизован?
*/
if (!$this->oUserCurrent) {
$this->oUserCurrent = $this->User_GetUserById(0);
}
/**
* Топик существует?
*/
$idTopic = getRequest('idTarget', null, 'post');
if (!($oTopic = $this->Topic_GetTopicById($idTopic))) {
$this->Message_AddErrorSingle($this->Lang_Get('system_error'), $this->Lang_Get('error'));
return;
}
$idCommentLast = getRequest('idCommentLast', null, 'post');
$selfIdComment = getRequest('selfIdComment', null, 'post');
$aComments = array();
/**
* Если используется постраничность, возвращаем только добавленный комментарий
*/
if (getRequest('bUsePaging', null, 'post') and $selfIdComment) {
if ($oComment = $this->Comment_GetCommentById($selfIdComment) and $oComment->getTargetId() == $oTopic->getId() and $oComment->getTargetType() == 'topic') {
$oViewerLocal = $this->Viewer_GetLocalViewer();
$oViewerLocal->Assign('oUserCurrent', $this->oUserCurrent);
$oViewerLocal->Assign('bOneComment', true);
$oViewerLocal->Assign('oComment', $oComment);
$sText = $oViewerLocal->Fetch($this->Comment_GetTemplateCommentByTarget($oTopic->getId(), 'topic'));
$aCmt = array();
$aCmt[] = array('html' => $sText, 'obj' => $oComment);
} else {
$aCmt = array();
}
$aReturn['comments'] = $aCmt;
$aReturn['iMaxIdComment'] = $selfIdComment;
} else {
$aReturn = $this->Comment_GetCommentsNewByTargetId($oTopic->getId(), 'topic', $idCommentLast);
}
$iMaxIdComment = $aReturn['iMaxIdComment'];
$oTopicRead = Engine::GetEntity('Topic_TopicRead');
$oTopicRead->setTopicId($oTopic->getId());
$oTopicRead->setUserId($this->oUserCurrent->getId());
$oTopicRead->setCommentCountLast($oTopic->getCountComment());
$oTopicRead->setCommentIdLast($iMaxIdComment);
$oTopicRead->setDateRead(date("Y-m-d H:i:s"));
$this->Topic_SetTopicRead($oTopicRead);
$aCmts = $aReturn['comments'];
if ($aCmts and is_array($aCmts)) {
foreach ($aCmts as $aCmt) {
$aComments[] = array('html' => $aCmt['html'], 'idParent' => $aCmt['obj']->getPid(), 'id' => $aCmt['obj']->getId());
}
}
$this->Viewer_AssignAjax('iMaxIdComment', $iMaxIdComment);
$this->Viewer_AssignAjax('aComments', $aComments);
}
示例15: EventAjaxSubscribeToggle
/**
* Изменение состояния подписки
*/
protected function EventAjaxSubscribeToggle()
{
/**
* Устанавливаем формат Ajax ответа
*/
$this->Viewer_SetResponseAjax('json');
/**
* Получаем емайл подписки и проверяем его на валидность
*/
$sMail = getRequestStr('mail');
if ($this->oUserCurrent) {
$sMail = $this->oUserCurrent->getMail();
}
if (!func_check($sMail, 'mail')) {
$this->Message_AddError($this->Lang_Get('registration_mail_error'), $this->Lang_Get('error'));
return;
}
/**
* Получаем тип объекта подписки
*/
$sTargetType = getRequestStr('target_type');
if (!$this->Subscribe_IsAllowTargetType($sTargetType)) {
$this->Message_AddError($this->Lang_Get('system_error'), $this->Lang_Get('error'));
return;
}
$sTargetId = getRequestStr('target_id') ? getRequestStr('target_id') : null;
$iValue = getRequest('value') ? 1 : 0;
$oSubscribe = null;
/**
* Есть ли доступ к подписке гостям?
*/
if (!$this->oUserCurrent and !$this->Subscribe_IsAllowTargetForGuest($sTargetType)) {
$this->Message_AddError($this->Lang_Get('need_authorization'), $this->Lang_Get('error'));
return;
}
/**
* Проверка объекта подписки
*/
if (!$this->Subscribe_CheckTarget($sTargetType, $sTargetId, $iValue)) {
$this->Message_AddError($this->Lang_Get('system_error'), $this->Lang_Get('error'));
return;
}
/**
* Если подписка еще не существовала, то создаем её
*/
if ($oSubscribe = $this->Subscribe_AddSubscribeSimple($sTargetType, $sTargetId, $sMail)) {
$oSubscribe->setStatus($iValue);
$this->Subscribe_UpdateSubscribe($oSubscribe);
$this->Message_AddNotice($this->Lang_Get('subscribe_change_ok'), $this->Lang_Get('attention'));
return;
}
$this->Message_AddError($this->Lang_Get('system_error'), $this->Lang_Get('error'));
return;
}