1
0
Fork 0
mirror of https://github.com/Oreolek/ifhub.club.git synced 2024-07-08 01:14:24 +03:00
ifhub.club/application/frontend/components/activity/blocks/recent-comments.tpl
2017-03-13 04:11:41 +05:00

26 lines
870 B
Smarty

{**
* Последняя активность
* Топики отсортированные по времени последнего комментария
*}
{component_define_params params=[ 'comments' ]}
{capture 'items'}
{foreach $comments as $comment}
{$topic = $comment->getTarget()}
{component 'activity' template='recent-item'
user = $comment->getUser()
comment = $comment
topic = $topic
date = $comment->getDate()
classes = 'js-title-comment'
attributes = [
title => {$comment->getText()|strip_tags|trim|truncate:100:'...'|escape}
]}
{foreachelse}
{component 'blankslate' text={lang 'common.empty'} mods='no-background'}
{/foreach}
{/capture}
{component 'item' template='group' items=$smarty.capture.items}