1
0
Fork 0
mirror of https://github.com/Oreolek/ifhub.club.git synced 2024-07-03 06:55:03 +03:00
ifhub.club/application/frontend/skin/synio/comments/comment.tpl

160 lines
6.5 KiB
Smarty
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

{**
* Комментарий
*
* bAllowNewComment true если разрешно добавлять новые комментарии
* bOneComment
* bNoCommentFavourites true если не нужно выводить кнопку добавления в избранное
* iAuthorId ID автора топика
* bList true если комментарий выводится в списках (например на странице Избранные комментарии)
*
* @styles css/comments.css
*}
{$oUser = $oComment->getUser()}
{$oVote = $oComment->getVote()}
{* Комментарий *}
<section id="comment_id_{$oComment->getId()}" class="comment
{if ! $bList}
{if $oComment->isBad()}
comment-bad
{/if}
{if $oComment->getDelete()}
comment-deleted
{elseif $oUserCurrent and $oComment->getUserId() == $oUserCurrent->getId()}
comment-self
{elseif $sDateReadLast <= $oComment->getDate()}
comment-new
{/if}
{else}
comment-list-item
{/if}">
{if ! $oComment->getDelete() or $bOneComment or ($oUserCurrent and $oUserCurrent->isAdministrator())}
<a name="comment{$oComment->getId()}"></a>
{* Кнопка сворачивания ветки комментариев *}
<div class="comment-folding"></div>
{* Аватар пользователя *}
<a href="{$oUser->getUserWebPath()}">
<img src="{$oUser->getProfileAvatarPath(24)}" alt="avatar" class="comment-avatar" />
</a>
{* Информация *}
<ul class="comment-info">
{* Автор комментария *}
<li class="comment-author {if $iAuthorId == $oUser->getId()}comment-topic-author{/if}" title="{if $iAuthorId == $oUser->getId() and $sAuthorNotice}{$sAuthorNotice}{/if}">
<a href="{$oUser->getUserWebPath()}">{$oUser->getDisplayName()}</a>
</li>
{* Дата *}
<li class="comment-date">
<time datetime="{date_format date=$oComment->getDate() format='c'}" title="{date_format date=$oComment->getDate() format="j F Y, H:i"}">
{date_format date=$oComment->getDate() hours_back="12" minutes_back="60" now="60" day="day H:i" format="j F Y, H:i"}
</time>
</li>
{* Избранное *}
{if $oUserCurrent and ! $bNoCommentFavourites}
<li class="favourite comment-favourite js-favourite">
<div data-favourite-type="comment"
data-favourite-id="{$oComment->getId()}"
class="favourite-toggle js-favourite-toggle {if $oUserCurrent && $oComment->getIsFavourite()}active{/if} js-favourite"
title="{if $oComment->getIsFavourite()}{$aLang.talk_favourite_del}{else}{$aLang.talk_favourite_add}{/if}"></div>
<span class="favourite-count js-favourite-count">{if $oComment->getCountFavourite() > 0}{$oComment->getCountFavourite()}{/if}</span>
</li>
{/if}
{* Ссылка на комментарий *}
<li class="comment-link">
<a href="{if $oConfig->GetValue('module.comment.nested_per_page')}{router page='comments'}{else}#comment{/if}{$oComment->getId()}" title="{$aLang.comment_url_notice}">
<i class="icon-synio-link"></i>
</a>
</li>
{* Ссылки на родительские/дочерние комментарии *}
{if $oComment->getPid()}
<li class="comment-goto comment-goto-parent">
<a href="#" onclick="ls.comments.goToParentComment({$oComment->getId()},{$oComment->getPid()}); return false;" title="{$aLang.comment_goto_parent}">↑</a>
</li>
{/if}
<li class="comment-goto comment-goto-child"><a href="#" title="{$aLang.comment_goto_child}">↓</a></li>
{**
* Блок голосования
* Не выводим блок голосования в личных сообщениях и списках
*}
{if $oComment->getTargetType() != 'talk'}
<li data-vote-type="comment"
data-vote-id="{$oComment->getId()}"
class="vote js-vote
{if $oComment->getRating() > 0}
vote-count-positive
{elseif $oComment->getRating() < 0}
vote-count-negative
{/if}
{if (strtotime($oComment->getDate()) < $smarty.now - $oConfig->GetValue('acl.vote.comment.limit_time') && ! $oVote) || ($oUserCurrent && $oUserCurrent->getId() == $oUser->getId())}
vote-expired
{/if}
{if $oVote}
voted
{if $oVote->getDirection() > 0}
voted-up
{else}
voted-down
{/if}
{/if}">
<span class="vote-count js-vote-rating">{if $oComment->getRating() > 0}+{/if}{$oComment->getRating()}</span>
<div class="vote-down js-vote-down"></div>
<div class="vote-up js-vote-up"></div>
</li>
{/if}
</ul>
{* Текст комментария *}
<div id="comment_content_id_{$oComment->getId()}" class="comment-content">
<div class="text">
{$oComment->getText()}
</div>
</div>
{* Выводим ссылки на блог и топик в котором находится комментарий (только в списках) *}
{if $bList}
{$oTopic = $oComment->getTarget()}
{$oBlog = $oTopic->getBlog()}
<div class="comment-path">
<a href="{$oBlog->getUrlFull()}" class="comment-path-blog">{$oBlog->getTitle()|escape:'html'}</a> &rarr;
<a href="{$oTopic->getUrl()}" class="comment-path-topic">{$oTopic->getTitle()|escape:'html'}</a>
<a href="{$oTopic->getUrl()}#comments" class="comment-path-comments">{$oTopic->getCountComment()}</a>
</div>
{/if}
{* Кнопки ответа, удаления и т.д. *}
{if $oUserCurrent and ! $bList}
<ul class="comment-actions">
{if ! $oComment->getDelete() and ! $bAllowNewComment}
<li><a href="#" onclick="ls.comments.toggleCommentForm({$oComment->getId()}); return false;" class="reply-link link-dotted">{$aLang.comment_answer}</a></li>
{/if}
{if ! $oComment->getDelete() and $oUserCurrent and $oUserCurrent->isAdministrator()}
<li><a href="#" class="comment-delete link-dotted" onclick="ls.comments.toggle(this,{$oComment->getId()}); return false;">{$aLang.comment_delete}</a></li>
{/if}
{if $oComment->getDelete() and $oUserCurrent and $oUserCurrent->isAdministrator()}
<li><a href="#" class="comment-repair link-dotted" onclick="ls.comments.toggle(this,{$oComment->getId()}); return false;">{$aLang.comment_repair}</a></li>
{/if}
{hook run='comment_action' comment=$oComment}
</ul>
{/if}
{else}
{$aLang.comment_was_delete}
{/if}
</section>