1
0
Fork 0
mirror of https://github.com/Oreolek/ifhub.club.git synced 2024-07-03 06:55:03 +03:00
ifhub.club/classes/blocks/BlockUserfeedUsers.class.php
2011-05-30 14:14:56 +00:00

11 lines
415 B
PHP

<?php
class BlockUserfeedUsers extends Block
{
public function Exec() {
$aUserSubscribes = $this->Userfeed_getUserSubscribes($this->User_getUserCurrent()->getId());
$aFriends = $this->User_getUsersFriend($this->User_getUserCurrent()->getId());
$this->Viewer_Assign('aUserfeedSubscribedUsers', $aUserSubscribes['users']);
$this->Viewer_Assign('aUserfeedFriends', $aFriends);
}
}