1
0
Fork 0
mirror of https://github.com/Oreolek/ifhub.club.git synced 2024-06-16 14:50:48 +03:00

Последние топики

This commit is contained in:
Alexander Yakovlev 2017-02-03 16:52:36 +07:00
parent 05d46b661d
commit b23d16609b

View file

@ -20,7 +20,7 @@
*/
/**
* Обработка блока с комментариями (прямой эфир)
* Обработка блока с топиками (прямой эфир)
*
* @package application.blocks
* @since 1.0
@ -33,18 +33,15 @@ class BlockActivityRecent extends Block
public function Exec()
{
/**
* Получаем комментарии
* Получаем топики
*/
if ($aComments = $this->Comment_GetCommentsOnline('topic', Config::Get('block.stream.row'))) {
if ($oTopics = $this->Topic_GetTopicsLast(Config::Get('block.stream.row'))) {
$oViewer = $this->Viewer_GetLocalViewer();
$oViewer->Assign('comments', $aComments, true);
/**
* Формируем результат в виде шаблона и возвращаем
*/
$sTextResult = $oViewer->Fetch("component@activity.recent-comments");
$oViewer->Assign('topics', $oTopics, true);
$sTextResult = $oViewer->Fetch("component@activity.recent-topics");
$this->Viewer_Assign('content', $sTextResult, true);
}
$this->SetTemplate('component@activity.block.recent');
}
}
}