1
0
Fork 0
mirror of https://github.com/Oreolek/ifhub.club.git synced 2024-07-01 05:55:02 +03:00

Доработки бэкенда под компонент user

This commit is contained in:
Denis Shakhov 2014-08-05 21:28:36 +07:00
parent 8a94fb7521
commit bd10e52632
6 changed files with 56 additions and 66 deletions

View file

@ -1387,7 +1387,7 @@ class ActionBlog extends Action {
$aResult[]=array( $aResult[]=array(
'bStateError'=>true, 'bStateError'=>true,
'sMsgTitle'=>$this->Lang_Get('error'), 'sMsgTitle'=>$this->Lang_Get('error'),
'sMsg'=>$this->Lang_Get('user_not_found',array('login'=>htmlspecialchars($sUser))), 'sMsg'=>$this->Lang_Get('user.notices.not_found',array('login'=>htmlspecialchars($sUser))),
'sUserLogin'=>htmlspecialchars($sUser) 'sUserLogin'=>htmlspecialchars($sUser)
); );
continue; continue;

View file

@ -43,7 +43,7 @@ class ActionPeople extends Action {
/** /**
* Устанавливаем title страницы * Устанавливаем title страницы
*/ */
$this->Viewer_AddHtmlTitle($this->Lang_Get('people')); $this->Viewer_AddHtmlTitle($this->Lang_Get('user.users'));
} }
/** /**
* Регистрируем евенты * Регистрируем евенты
@ -136,7 +136,7 @@ class ActionPeople extends Action {
$oViewer->Assign('bUseMore', true); $oViewer->Assign('bUseMore', true);
$oViewer->Assign('bHideMore', $bHideMore); $oViewer->Assign('bHideMore', $bHideMore);
$oViewer->Assign('iSearchCount', $aResult['count']); $oViewer->Assign('iSearchCount', $aResult['count']);
$this->Viewer_AssignAjax('sText',$oViewer->Fetch("components/user_list/user_list.tpl")); $this->Viewer_AssignAjax('sText',$oViewer->Fetch("components/user/user-list.tpl"));
/** /**
* Для подгрузки * Для подгрузки
*/ */

View file

@ -204,7 +204,7 @@ class ActionProfile extends Action {
*/ */
$this->Viewer_Assign('aPaging',$aPaging); $this->Viewer_Assign('aPaging',$aPaging);
$this->Viewer_Assign('aFriends',$aFriends); $this->Viewer_Assign('aFriends',$aFriends);
$this->Viewer_AddHtmlTitle($this->Lang_Get('user_menu_profile_friends').' '.$this->oUserProfile->getLogin()); $this->Viewer_AddHtmlTitle($this->Lang_Get('user.friends.title').' '.$this->oUserProfile->getLogin());
$this->SetTemplateAction('friends'); $this->SetTemplateAction('friends');
} }
@ -242,8 +242,8 @@ class ActionProfile extends Action {
*/ */
$this->Viewer_Assign('aPaging',$aPaging); $this->Viewer_Assign('aPaging',$aPaging);
$this->Viewer_Assign('aTopics',$aTopics); $this->Viewer_Assign('aTopics',$aTopics);
$this->Viewer_AddHtmlTitle($this->Lang_Get('user_menu_publication').' '.$this->oUserProfile->getLogin()); $this->Viewer_AddHtmlTitle($this->Lang_Get('user.publications.title').' '.$this->oUserProfile->getLogin());
$this->Viewer_AddHtmlTitle($this->Lang_Get('user_menu_publication_blog')); $this->Viewer_AddHtmlTitle($this->Lang_Get('user.publications.nav.topics'));
$this->Viewer_SetHtmlRssAlternate(Router::GetPath('rss').'personal_blog/'.$this->oUserProfile->getLogin().'/',$this->oUserProfile->getLogin()); $this->Viewer_SetHtmlRssAlternate(Router::GetPath('rss').'personal_blog/'.$this->oUserProfile->getLogin().'/',$this->oUserProfile->getLogin());
/** /**
* Устанавливаем шаблон вывода * Устанавливаем шаблон вывода
@ -276,8 +276,8 @@ class ActionProfile extends Action {
*/ */
$this->Viewer_Assign('aPaging',$aPaging); $this->Viewer_Assign('aPaging',$aPaging);
$this->Viewer_Assign('aComments',$aComments); $this->Viewer_Assign('aComments',$aComments);
$this->Viewer_AddHtmlTitle($this->Lang_Get('user_menu_publication').' '.$this->oUserProfile->getLogin()); $this->Viewer_AddHtmlTitle($this->Lang_Get('user.publications.title').' '.$this->oUserProfile->getLogin());
$this->Viewer_AddHtmlTitle($this->Lang_Get('user_menu_publication_comment')); $this->Viewer_AddHtmlTitle($this->Lang_Get('user.publications.nav.comments'));
/** /**
* Устанавливаем шаблон вывода * Устанавливаем шаблон вывода
*/ */
@ -318,8 +318,9 @@ class ActionProfile extends Action {
*/ */
$this->Viewer_Assign('aPaging',$aPaging); $this->Viewer_Assign('aPaging',$aPaging);
$this->Viewer_Assign('aTopics',$aTopics); $this->Viewer_Assign('aTopics',$aTopics);
$this->Viewer_AddHtmlTitle($this->Lang_Get('user_menu_profile').' '.$this->oUserProfile->getLogin()); $this->Viewer_AddHtmlTitle($this->Lang_Get('user.profile.title').' '.$this->oUserProfile->getLogin());
$this->Viewer_AddHtmlTitle($this->Lang_Get('user_menu_profile_favourites')); $this->Viewer_AddHtmlTitle($this->Lang_Get('user.favourites.title'));
$this->Viewer_AddHtmlTitle($this->Lang_Get('user.favourites.nav.topics'));
/** /**
* Устанавливаем шаблон вывода * Устанавливаем шаблон вывода
*/ */
@ -363,8 +364,8 @@ class ActionProfile extends Action {
$this->Viewer_Assign('aPaging',$aPaging); $this->Viewer_Assign('aPaging',$aPaging);
$this->Viewer_Assign('aTopics',$aTopics); $this->Viewer_Assign('aTopics',$aTopics);
$this->Viewer_Assign('sFavouriteTag',htmlspecialchars($sTag)); $this->Viewer_Assign('sFavouriteTag',htmlspecialchars($sTag));
$this->Viewer_AddHtmlTitle($this->Lang_Get('user_menu_profile').' '.$this->oUserProfile->getLogin()); $this->Viewer_AddHtmlTitle($this->Lang_Get('user.profile.title').' '.$this->oUserProfile->getLogin());
$this->Viewer_AddHtmlTitle($this->Lang_Get('user_menu_profile_favourites')); $this->Viewer_AddHtmlTitle($this->Lang_Get('user.favourites.title'));
/** /**
* Устанавливаем шаблон вывода * Устанавливаем шаблон вывода
*/ */
@ -397,8 +398,9 @@ class ActionProfile extends Action {
*/ */
$this->Viewer_Assign('aPaging',$aPaging); $this->Viewer_Assign('aPaging',$aPaging);
$this->Viewer_Assign('aComments',$aComments); $this->Viewer_Assign('aComments',$aComments);
$this->Viewer_AddHtmlTitle($this->Lang_Get('user_menu_profile').' '.$this->oUserProfile->getLogin()); $this->Viewer_AddHtmlTitle($this->Lang_Get('user.profile.title').' '.$this->oUserProfile->getLogin());
$this->Viewer_AddHtmlTitle($this->Lang_Get('user_menu_profile_favourites_comments')); $this->Viewer_AddHtmlTitle($this->Lang_Get('user.favourites.title'));
$this->Viewer_AddHtmlTitle($this->Lang_Get('user.favourites.nav.comments'));
/** /**
* Устанавливаем шаблон вывода * Устанавливаем шаблон вывода
*/ */
@ -454,8 +456,8 @@ class ActionProfile extends Action {
$this->Viewer_Assign('aBlogAdministrators',$aBlogAdministrators); $this->Viewer_Assign('aBlogAdministrators',$aBlogAdministrators);
$this->Viewer_Assign('aBlogsOwner',$aBlogsOwner); $this->Viewer_Assign('aBlogsOwner',$aBlogsOwner);
$this->Viewer_Assign('aUsersFriend',$aUsersFriend['collection']); $this->Viewer_Assign('aUsersFriend',$aUsersFriend['collection']);
$this->Viewer_AddHtmlTitle($this->Lang_Get('user_menu_profile').' '.$this->oUserProfile->getLogin()); $this->Viewer_AddHtmlTitle($this->Lang_Get('user.profile.title').' '.$this->oUserProfile->getLogin());
$this->Viewer_AddHtmlTitle($this->Lang_Get('user_menu_profile_whois')); $this->Viewer_AddHtmlTitle($this->Lang_Get('user.profile.title')); // TODO: i18n
/** /**
* Устанавливаем шаблон вывода * Устанавливаем шаблон вывода
*/ */
@ -575,8 +577,8 @@ class ActionProfile extends Action {
*/ */
$this->Viewer_Assign('aPaging',$aPaging); $this->Viewer_Assign('aPaging',$aPaging);
$this->Viewer_Assign('aUsersList',$aNotes); $this->Viewer_Assign('aUsersList',$aNotes);
$this->Viewer_AddHtmlTitle($this->Lang_Get('user_menu_profile').' '.$this->oUserProfile->getLogin()); $this->Viewer_AddHtmlTitle($this->Lang_Get('user.publications.title').' '.$this->oUserProfile->getLogin());
$this->Viewer_AddHtmlTitle($this->Lang_Get('user_menu_profile_notes')); $this->Viewer_AddHtmlTitle($this->Lang_Get('user.publications.nav.notes'));
/** /**
* Устанавливаем шаблон вывода * Устанавливаем шаблон вывода
*/ */
@ -611,7 +613,7 @@ class ActionProfile extends Action {
* либо из e-mail письма-уведомления * либо из e-mail письма-уведомления
*/ */
if(!$oUser=$this->User_GetUserById($sUserId)) { if(!$oUser=$this->User_GetUserById($sUserId)) {
$this->Message_AddError($this->Lang_Get('user_not_found'),$this->Lang_Get('error'),true); $this->Message_AddError($this->Lang_Get('user.notices.not_found'),$this->Lang_Get('error'),true);
Router::Location(Router::GetPath('talk')); Router::Location(Router::GetPath('talk'));
return ; return ;
} }
@ -630,8 +632,8 @@ class ActionProfile extends Action {
) )
) { ) {
$sMessage=($oFriend) $sMessage=($oFriend)
? $this->Lang_Get('user_friend_offer_already_done') ? $this->Lang_Get('user.friends.notices.offer_already_done')
: $this->Lang_Get('user_friend_offer_not_found'); : $this->Lang_Get('user.friends.notices.offer_not_found');
$this->Message_AddError($sMessage,$this->Lang_Get('error'),true); $this->Message_AddError($sMessage,$this->Lang_Get('error'),true);
Router::Location(Router::GetPath('talk')); Router::Location(Router::GetPath('talk'));
@ -648,8 +650,8 @@ class ActionProfile extends Action {
if ($this->User_UpdateFriend($oFriend)) { if ($this->User_UpdateFriend($oFriend)) {
$sMessage=($sAction=='accept') $sMessage=($sAction=='accept')
? $this->Lang_Get('user_friend_add_ok') ? $this->Lang_Get('user.friends.notices.add_success')
: $this->Lang_Get('user_friend_offer_reject'); : $this->Lang_Get('user.friends.rejected');
$this->Message_AddNoticeSingle($sMessage,$this->Lang_Get('attention'),true); $this->Message_AddNoticeSingle($sMessage,$this->Lang_Get('attention'),true);
$this->NoticeFriendOffer($oUser,$sAction); $this->NoticeFriendOffer($oUser,$sAction);
@ -686,18 +688,14 @@ class ActionProfile extends Action {
* При попытке добавить в друзья себя, возвращаем ошибку * При попытке добавить в друзья себя, возвращаем ошибку
*/ */
if ($this->oUserCurrent->getId()==$sUserId) { if ($this->oUserCurrent->getId()==$sUserId) {
$this->Message_AddErrorSingle( return $this->EventErrorDebug();
$this->Lang_Get('user_friend_add_self'),
$this->Lang_Get('error')
);
return;
} }
/** /**
* Если пользователь не найден, возвращаем ошибку * Если пользователь не найден, возвращаем ошибку
*/ */
if( !$oUser=$this->User_GetUserById($sUserId) ) { if( !$oUser=$this->User_GetUserById($sUserId) ) {
$this->Message_AddErrorSingle( $this->Message_AddErrorSingle(
$this->Lang_Get('user_not_found'), $this->Lang_Get('user.notices.not_found'),
$this->Lang_Get('error') $this->Lang_Get('error')
); );
return; return;
@ -720,7 +718,7 @@ class ActionProfile extends Action {
*/ */
$oFriend->setStatusByUserId(ModuleUser::USER_FRIEND_ACCEPT,$this->oUserCurrent->getId()); $oFriend->setStatusByUserId(ModuleUser::USER_FRIEND_ACCEPT,$this->oUserCurrent->getId());
if($this->User_UpdateFriend($oFriend)) { if($this->User_UpdateFriend($oFriend)) {
$this->Message_AddNoticeSingle($this->Lang_Get('user_friend_add_ok'),$this->Lang_Get('attention')); $this->Message_AddNoticeSingle($this->Lang_Get('user.friends.notices.add_success'),$this->Lang_Get('attention'));
$this->NoticeFriendOffer($oUser,'accept'); $this->NoticeFriendOffer($oUser,'accept');
/** /**
* Добавляем событие в ленту * Добавляем событие в ленту
@ -735,7 +733,7 @@ class ActionProfile extends Action {
$oViewerLocal=$this->GetViewerLocal(); $oViewerLocal=$this->GetViewerLocal();
$oViewerLocal->Assign('oUserFriend',$oFriend); $oViewerLocal->Assign('oUserFriend',$oFriend);
$this->Viewer_AssignAjax('sToggleText',$oViewerLocal->Fetch("actions/ActionProfile/friend_item.tpl")); $this->Viewer_AssignAjax('sToggleText',$oViewerLocal->Fetch("components/user/friend_item.tpl"));
} else { } else {
return $this->EventErrorDebug(); return $this->EventErrorDebug();
@ -765,9 +763,9 @@ class ActionProfile extends Action {
return false; return false;
} }
$sTitle=$this->Lang_Get("user_friend_{$sAction}_notice_title"); $sTitle=$this->Lang_Get("user.friends.messages.{$sAction}.title");
$sText=$this->Lang_Get( $sText=$this->Lang_Get(
"user_friend_{$sAction}_notice_text", "user.friends.messages.{$sAction}.text",
array( array(
'login'=>$this->oUserCurrent->getLogin(), 'login'=>$this->oUserCurrent->getLogin(),
) )
@ -800,18 +798,14 @@ class ActionProfile extends Action {
* При попытке добавить в друзья себя, возвращаем ошибку * При попытке добавить в друзья себя, возвращаем ошибку
*/ */
if ($this->oUserCurrent->getId()==$sUserId) { if ($this->oUserCurrent->getId()==$sUserId) {
$this->Message_AddErrorSingle( return $this->EventErrorDebug();
$this->Lang_Get('user_friend_add_self'),
$this->Lang_Get('error')
);
return;
} }
/** /**
* Если пользователь не найден, возвращаем ошибку * Если пользователь не найден, возвращаем ошибку
*/ */
if( !$oUser=$this->User_GetUserById($sUserId) ) { if( !$oUser=$this->User_GetUserById($sUserId) ) {
$this->Message_AddErrorSingle( $this->Message_AddErrorSingle(
$this->Lang_Get('user_not_found'), $this->Lang_Get('user.notices.not_found'),
$this->Lang_Get('error') $this->Lang_Get('error')
); );
return; return;
@ -834,7 +828,7 @@ class ActionProfile extends Action {
*/ */
if($oFriend->getFriendStatus()==ModuleUser::USER_FRIEND_OFFER + ModuleUser::USER_FRIEND_ACCEPT) { if($oFriend->getFriendStatus()==ModuleUser::USER_FRIEND_OFFER + ModuleUser::USER_FRIEND_ACCEPT) {
$this->Message_AddErrorSingle( $this->Message_AddErrorSingle(
$this->Lang_Get('user_friend_already_exist'), $this->Lang_Get('user.friends.notices.already_exist'),
$this->Lang_Get('error') $this->Lang_Get('error')
); );
return; return;
@ -846,7 +840,7 @@ class ActionProfile extends Action {
if($oFriend->getUserFrom()==$this->oUserCurrent->getId() if($oFriend->getUserFrom()==$this->oUserCurrent->getId()
&& $oFriend->getStatusTo()==ModuleUser::USER_FRIEND_REJECT ) { && $oFriend->getStatusTo()==ModuleUser::USER_FRIEND_REJECT ) {
$this->Message_AddErrorSingle( $this->Message_AddErrorSingle(
$this->Lang_Get('user_friend_offer_reject'), $this->Lang_Get('user.friends.rejected'),
$this->Lang_Get('error') $this->Lang_Get('error')
); );
return; return;
@ -873,11 +867,11 @@ class ActionProfile extends Action {
*/ */
$this->Stream_write($oFriend->getUserFrom(), 'add_friend', $oFriend->getUserTo()); $this->Stream_write($oFriend->getUserFrom(), 'add_friend', $oFriend->getUserTo());
$this->Stream_write($oFriend->getUserTo(), 'add_friend', $oFriend->getUserFrom()); $this->Stream_write($oFriend->getUserTo(), 'add_friend', $oFriend->getUserFrom());
$this->Message_AddNoticeSingle($this->Lang_Get('user_friend_add_ok'),$this->Lang_Get('attention')); $this->Message_AddNoticeSingle($this->Lang_Get('user.friends.notices.add_success'),$this->Lang_Get('attention'));
$oViewerLocal=$this->GetViewerLocal(); $oViewerLocal=$this->GetViewerLocal();
$oViewerLocal->Assign('oUserFriend',$oFriend); $oViewerLocal->Assign('oUserFriend',$oFriend);
$this->Viewer_AssignAjax('sToggleText',$oViewerLocal->Fetch("actions/ActionProfile/friend_item.tpl")); $this->Viewer_AssignAjax('sToggleText',$oViewerLocal->Fetch("components/user/friend_item.tpl"));
} else { } else {
return $this->EventErrorDebug(); return $this->EventErrorDebug();
@ -885,7 +879,7 @@ class ActionProfile extends Action {
return; return;
} else { } else {
$this->Message_AddErrorSingle( $this->Message_AddErrorSingle(
$this->Lang_Get('user_friend_add_deleted'), $this->Lang_Get('user.friends.notices.rejected'),
$this->Lang_Get('error') $this->Lang_Get('error')
); );
return; return;
@ -926,7 +920,7 @@ class ActionProfile extends Action {
* Ограничения на добавления в друзья, т.к. приглашение отправляется в личку, то и ограничиваем по ней * Ограничения на добавления в друзья, т.к. приглашение отправляется в личку, то и ограничиваем по ней
*/ */
if (!$this->ACL_CanSendTalkTime($this->oUserCurrent)) { if (!$this->ACL_CanSendTalkTime($this->oUserCurrent)) {
$this->Message_AddErrorSingle($this->Lang_Get('user_friend_add_time_limit'),$this->Lang_Get('error')); $this->Message_AddErrorSingle($this->Lang_Get('user.friends.notices.time_limit'),$this->Lang_Get('error'));
return false; return false;
} }
/** /**
@ -948,10 +942,10 @@ class ActionProfile extends Action {
: !$this->User_AddFriend($oFriendNew); : !$this->User_AddFriend($oFriendNew);
if ( !$bStateError ) { if ( !$bStateError ) {
$this->Message_AddNoticeSingle($this->Lang_Get('user_friend_offer_send'),$this->Lang_Get('attention')); $this->Message_AddNoticeSingle($this->Lang_Get('user.friends.sent'),$this->Lang_Get('attention'));
$sTitle=$this->Lang_Get( $sTitle=$this->Lang_Get(
'user_friend_offer_title', 'user.friends.messages.offer.title',
array( array(
'login'=>$this->oUserCurrent->getLogin(), 'login'=>$this->oUserCurrent->getLogin(),
'friend'=>$oUser->getLogin() 'friend'=>$oUser->getLogin()
@ -968,7 +962,7 @@ class ActionProfile extends Action {
); );
$sText=$this->Lang_Get( $sText=$this->Lang_Get(
'user_friend_offer_text', 'user.friends.messages.offer.text',
array( array(
'login'=>$this->oUserCurrent->getLogin(), 'login'=>$this->oUserCurrent->getLogin(),
'accept_path'=>$aPath['accept'], 'accept_path'=>$aPath['accept'],
@ -994,7 +988,7 @@ class ActionProfile extends Action {
$oViewerLocal=$this->GetViewerLocal(); $oViewerLocal=$this->GetViewerLocal();
$oViewerLocal->Assign('oUserFriend',$oFriendNew); $oViewerLocal->Assign('oUserFriend',$oFriendNew);
$this->Viewer_AssignAjax('sToggleText',$oViewerLocal->Fetch("actions/ActionProfile/friend_item.tpl")); $this->Viewer_AssignAjax('sToggleText',$oViewerLocal->Fetch("components/user/friend_item.tpl"));
} }
/** /**
* Удаление пользователя из друзей * Удаление пользователя из друзей
@ -1020,18 +1014,14 @@ class ActionProfile extends Action {
* При попытке добавить в друзья себя, возвращаем ошибку * При попытке добавить в друзья себя, возвращаем ошибку
*/ */
if ($this->oUserCurrent->getId()==$sUserId) { if ($this->oUserCurrent->getId()==$sUserId) {
$this->Message_AddErrorSingle( return $this->EventErrorDebug();
$this->Lang_Get('user_friend_add_self'),
$this->Lang_Get('error')
);
return;
} }
/** /**
* Если пользователь не найден, возвращаем ошибку * Если пользователь не найден, возвращаем ошибку
*/ */
if( !$oUser=$this->User_GetUserById($sUserId) ) { if( !$oUser=$this->User_GetUserById($sUserId) ) {
$this->Message_AddErrorSingle( $this->Message_AddErrorSingle(
$this->Lang_Get('user_friend_del_no'), $this->Lang_Get('user.friends.notices.not_found'),
$this->Lang_Get('error') $this->Lang_Get('error')
); );
return; return;
@ -1046,7 +1036,7 @@ class ActionProfile extends Action {
$aAllowedFriendStatus = array(ModuleUser::USER_FRIEND_ACCEPT+ModuleUser::USER_FRIEND_OFFER,ModuleUser::USER_FRIEND_ACCEPT+ModuleUser::USER_FRIEND_ACCEPT); $aAllowedFriendStatus = array(ModuleUser::USER_FRIEND_ACCEPT+ModuleUser::USER_FRIEND_OFFER,ModuleUser::USER_FRIEND_ACCEPT+ModuleUser::USER_FRIEND_ACCEPT);
if(!$oFriend || !in_array($oFriend->getFriendStatus(),$aAllowedFriendStatus)) { if(!$oFriend || !in_array($oFriend->getFriendStatus(),$aAllowedFriendStatus)) {
$this->Message_AddErrorSingle( $this->Message_AddErrorSingle(
$this->Lang_Get('user_friend_del_no'), $this->Lang_Get('user.friends.notices.not_found'),
$this->Lang_Get('error') $this->Lang_Get('error')
); );
return; return;
@ -1055,24 +1045,24 @@ class ActionProfile extends Action {
* Удаляем из друзей * Удаляем из друзей
*/ */
if( $this->User_DeleteFriend($oFriend) ) { if( $this->User_DeleteFriend($oFriend) ) {
$this->Message_AddNoticeSingle($this->Lang_Get('user_friend_del_ok'),$this->Lang_Get('attention')); $this->Message_AddNoticeSingle($this->Lang_Get('user.friends.notices.remove_success'),$this->Lang_Get('attention'));
$oViewerLocal=$this->GetViewerLocal(); $oViewerLocal=$this->GetViewerLocal();
$oViewerLocal->Assign('oUserFriend',$oFriend); $oViewerLocal->Assign('oUserFriend',$oFriend);
$this->Viewer_AssignAjax('sToggleText',$oViewerLocal->Fetch("actions/ActionProfile/friend_item.tpl")); $this->Viewer_AssignAjax('sToggleText',$oViewerLocal->Fetch("components/user/friend_item.tpl"));
/** /**
* Отправляем пользователю сообщение об удалении дружеской связи * Отправляем пользователю сообщение об удалении дружеской связи
*/ */
if(Config::Get('module.user.friend_notice.delete')) { if(Config::Get('module.user.friend_notice.delete')) {
$sText=$this->Lang_Get( $sText=$this->Lang_Get(
'user_friend_del_notice_text', 'user.friends.messages.deleted.text',
array( array(
'login'=>$this->oUserCurrent->getLogin(), 'login'=>$this->oUserCurrent->getLogin(),
) )
); );
$oTalk=$this->Talk_SendTalk( $oTalk=$this->Talk_SendTalk(
$this->Lang_Get('user_friend_del_notice_title'), $this->Lang_Get('user.friends.messages.deleted.title'),
$sText,$this->oUserCurrent, $sText,$this->oUserCurrent,
array($oUser),false,false array($oUser),false,false
); );

View file

@ -282,7 +282,7 @@ class ActionStream extends Action {
$aResult[]=array( $aResult[]=array(
'bStateError'=>true, 'bStateError'=>true,
'sMsgTitle'=>$this->Lang_Get('error'), 'sMsgTitle'=>$this->Lang_Get('error'),
'sMsg'=>$this->Lang_Get('user_not_found',array('login'=>htmlspecialchars($sUser))), 'sMsg'=>$this->Lang_Get('user.notices.not_found',array('login'=>htmlspecialchars($sUser))),
'sUserLogin'=>htmlspecialchars($sUser) 'sUserLogin'=>htmlspecialchars($sUser)
); );
} }

View file

@ -810,7 +810,7 @@ class ActionTalk extends Action {
$aResult[]=array( $aResult[]=array(
'bStateError'=>true, 'bStateError'=>true,
'sMsgTitle'=>$this->Lang_Get('error'), 'sMsgTitle'=>$this->Lang_Get('error'),
'sMsg'=>$this->Lang_Get('user_not_found',array('login'=>htmlspecialchars($sUser))), 'sMsg'=>$this->Lang_Get('user.notices.not_found',array('login'=>htmlspecialchars($sUser))),
'sUserLogin'=>htmlspecialchars($sUser) 'sUserLogin'=>htmlspecialchars($sUser)
); );
} }
@ -845,7 +845,7 @@ class ActionTalk extends Action {
*/ */
if (!$oUserTarget=$this->User_GetUserById($iUserId)) { if (!$oUserTarget=$this->User_GetUserById($iUserId)) {
$this->Message_AddErrorSingle( $this->Message_AddErrorSingle(
$this->Lang_Get('user_not_found_by_id',array('id'=>htmlspecialchars($iUserId))), $this->Lang_Get('user.notices.not_found_by_id',array('id'=>htmlspecialchars($iUserId))),
$this->Lang_Get('error') $this->Lang_Get('error')
); );
return; return;
@ -907,7 +907,7 @@ class ActionTalk extends Action {
*/ */
if (!$oUserTarget=$this->User_GetUserById($iUserId)) { if (!$oUserTarget=$this->User_GetUserById($iUserId)) {
$this->Message_AddErrorSingle( $this->Message_AddErrorSingle(
$this->Lang_Get('user_not_found_by_id',array('id'=>htmlspecialchars($iUserId))), $this->Lang_Get('user.notices.not_found_by_id',array('id'=>htmlspecialchars($iUserId))),
$this->Lang_Get('error') $this->Lang_Get('error')
); );
return; return;
@ -1152,7 +1152,7 @@ class ActionTalk extends Action {
$aResult[]=array( $aResult[]=array(
'bStateError'=>true, 'bStateError'=>true,
'sMsgTitle'=>$this->Lang_Get('error'), 'sMsgTitle'=>$this->Lang_Get('error'),
'sMsg'=>$this->Lang_Get('user_not_found',array('login'=>htmlspecialchars($sUser))) 'sMsg'=>$this->Lang_Get('user.notices.not_found',array('login'=>htmlspecialchars($sUser)))
); );
} }
} }

View file

@ -222,7 +222,7 @@ class ActionUserfeed extends Action {
$aResult[]=array( $aResult[]=array(
'bStateError'=>true, 'bStateError'=>true,
'sMsgTitle'=>$this->Lang_Get('error'), 'sMsgTitle'=>$this->Lang_Get('error'),
'sMsg'=>$this->Lang_Get('user_not_found',array('login'=>htmlspecialchars($sUser))), 'sMsg'=>$this->Lang_Get('user.notices.not_found',array('login'=>htmlspecialchars($sUser))),
'sUserLogin'=>htmlspecialchars($sUser) 'sUserLogin'=>htmlspecialchars($sUser)
); );
} }