1
0
Fork 0
mirror of https://github.com/Oreolek/ifhub.club.git synced 2024-07-07 17:04:24 +03:00
ifhub.club/classes/blocks/BlockUserfeedUsers.class.php

31 lines
974 B
PHP
Raw Normal View History

2011-05-30 17:14:56 +03:00
<?php
/*-------------------------------------------------------
*
* LiveStreet Engine Social Networking
* Copyright © 2008 Mzhelskiy Maxim
*
*--------------------------------------------------------
*
* Official site: www.livestreet.ru
* Contact e-mail: rus.engine@gmail.com
*
* GNU General Public License, version 2:
* http://www.gnu.org/licenses/old-licenses/gpl-2.0.html
*
---------------------------------------------------------
*/
2011-05-30 17:14:56 +03:00
/**
* Блок настройки списка пользователей в ленте
*
*/
class BlockUserfeedUsers extends Block {
2011-05-30 17:14:56 +03:00
public function Exec() {
2011-07-31 10:08:27 +03:00
if ($oUserCurrent = $this->User_getUserCurrent()) {
$aUserSubscribes = $this->Userfeed_getUserSubscribes($oUserCurrent->getId());
$aFriends = $this->User_getUsersFriend($oUserCurrent->getId());
$this->Viewer_Assign('aUserfeedSubscribedUsers', $aUserSubscribes['users']);
$this->Viewer_Assign('aUserfeedFriends', $aFriends['collection']);
2011-07-31 10:08:27 +03:00
}
}
2011-05-30 17:14:56 +03:00
}