1
0
Fork 0
mirror of https://github.com/Oreolek/ifhub.club.git synced 2024-07-08 17:34:26 +03:00
ifhub.club/application/frontend/skin/developer/topics/topic_base.tpl
2013-08-19 17:36:09 +07:00

208 lines
7.5 KiB
Smarty

{**
* Базовый шаблон топика
*
* @styles assets/css/topic.css
* @scripts <framework>/js/livestreet/topic.js
*}
{block name='topic_options'}{/block}
{$oBlog = $oTopic->getBlog()}
{$oUser = $oTopic->getUser()}
{$oVote = $oTopic->getVote()}
{$oFavourite = $oTopic->getFavourite()}
<article class="topic topic-type-{$oTopic->getType()} js-topic {if ! $bTopicList}topic-single{/if} {block name='topic_class'}{/block}" id="{block name='topic_id'}{/block}" {block name='topic_attributes'}{/block}>
{**
* Хидер
*}
{block name='topic_header'}
<header class="topic-header">
{* Заголовок *}
<h1 class="topic-title word-wrap">
{if $oTopic->getPublish() == 0}
<i class="icon-file" title="{$aLang.topic_unpublish}"></i>
{/if}
{block name='topic_icon'}{/block}
{if $bTopicList}
<a href="{$oTopic->getUrl()}">{$oTopic->getTitle()|escape:'html'}</a>
{else}
{$oTopic->getTitle()|escape:'html'}
{/if}
</h1>
{* Информация *}
<div class="topic-info">
<a href="{$oBlog->getUrlFull()}" class="topic-blog">{$oBlog->getTitle()|escape:'html'}</a>
<time datetime="{date_format date=$oTopic->getDateAdd() format='c'}" title="{date_format date=$oTopic->getDateAdd() format='j F Y, H:i'}">
{date_format date=$oTopic->getDateAdd() format="j F Y, H:i"}
</time>
{* Управление *}
{if $oTopic->getIsAllowAction()}
<ul class="actions">
{if $oTopic->getIsAllowEdit()}
<li><a href="{$oTopic->getUrlEdit()}" title="{$aLang.topic_edit}" class="actions-edit">{$aLang.topic_edit}</a></li>
{/if}
{if $oTopic->getIsAllowDelete()}
<li>
<a href="{router page='topic'}delete/{$oTopic->getId()}/?security_ls_key={$LIVESTREET_SECURITY_KEY}"
title="{$aLang.topic_delete}"
onclick="return confirm('{$aLang.topic_delete_confirm}');"
class="actions-delete">{$aLang.topic_delete}</a>
</li>
{/if}
</ul>
{/if}
</div>
</header>
{/block}
{block name='topic_header_after'}{/block}
{**
* Текст
*}
{block name='topic_content'}
<div class="topic-content text">
{hook run='topic_content_begin' topic=$oTopic bTopicList=$bTopicList}
{block name='topic_content_text'}{$oTopic->getText()}{/block}
{hook run='topic_content_end' topic=$oTopic bTopicList=$bTopicList}
</div>
{/block}
{block name='topic_content_after'}{/block}
{**
* Футер
*}
{block name='topic_footer'}
<footer class="topic-footer">
{block name='topic_footer_begin'}{/block}
{* Теги *}
<ul class="topic-tags js-favourite-insert-after-form js-favourite-tags-topic-{$oTopic->getId()}">
<li class="topic-tags-label">{$aLang.topic_tags}:</li>
{strip}
{foreach $oTopic->getTagsArray() as $sTag}
<li class="topic-tags-tag">{if ! $sTag@first}, {/if}<a rel="tag" href="{router page='tag'}{$sTag|escape:'url'}/" class="topic-tags-tag-link js-favourite-tag-link">{$sTag|escape}</a></li>
{foreachelse}
<li class="topic-tags-label">{$aLang.topic_tags_empty}</li>
{/foreach}
{if $oUserCurrent}
{if $oFavourite}
{foreach $oFavourite->getTagsArray() as $sTag}
<li class="topic-tags-tag topic-tags-tag-user js-favourite-tag-user">, <a rel="tag" href="{$oUserCurrent->getUserWebPath()}favourites/topics/tag/{$sTag|escape:'url'}/" class="topic-tags-tag-link js-favourite-tag-link js-favourite-tag-user-link">{$sTag|escape}</a></li>
{/foreach}
{/if}
<li class="topic-tags-edit js-favourite-tag-edit" {if !$oFavourite}style="display:none;"{/if}>
<a href="#" onclick="return ls.favourite.showEditTags({$oTopic->getId()},'topic',this);" class="link-dotted">{$aLang.favourite_form_tags_button_show}</a>
</li>
{/if}
{/strip}
</ul>
{* Информация *}
<ul class="topic-info">
{* Голосование *}
{if $oVote || ($oUserCurrent && $oTopic->getUserId() == $oUserCurrent->getId()) || strtotime($oTopic->getDateAdd()) < $smarty.now-$oConfig->GetValue('acl.vote.topic.limit_time')}
{$bShowVoteInfo = true}
{/if}
<li data-type="tooltip-toggle"
data-param-i-topic-id="{$oTopic->getId()}"
data-option-url="{router page='ajax'}vote/get/info/"
data-vote-type="topic"
data-vote-id="{$oTopic->getId()}"
class="vote js-vote
{if $oVote || ($oUserCurrent && $oTopic->getUserId() == $oUserCurrent->getId()) || strtotime($oTopic->getDateAdd()) < $smarty.now-$oConfig->GetValue('acl.vote.topic.limit_time')}
{if $oTopic->getRating() > 0}
vote-count-positive
{elseif $oTopic->getRating() < 0}
vote-count-negative
{/if}
{/if}
{if $oVote}
voted
{if $oVote->getDirection() > 0}
voted-up
{elseif $oVote->getDirection() < 0}
voted-down
{/if}
{/if}
{if $bShowVoteInfo}js-tooltip-vote-topic{/if}">
<div class="vote-up js-vote-up"></div>
<div class="vote-count js-vote-rating">
{if $bShowVoteInfo}
{if $oTopic->getRating() > 0}+{/if}{$oTopic->getRating()}
{else}
<a href="#" class="js-vote-abstain">?</a>
{/if}
</div>
<div class="vote-down js-vote-down"></div>
</li>
{* Автор топика *}
<li class="topic-info-author"><a rel="author" href="{$oUser->getUserWebPath()}">{$oUser->getLogin()}</a></li>
{* Избранное *}
<li class="topic-info-favourite">
<div onclick="return ls.favourite.toggle({$oTopic->getId()},this,'topic');"
class="favourite {if $oUserCurrent && $oTopic->getIsFavourite()}active{/if}"
title="{if $oTopic->getIsFavourite()}{$aLang.talk_favourite_del}{else}{$aLang.talk_favourite_add}{/if}"></div>
<span class="favourite-count" id="fav_count_topic_{$oTopic->getId()}" {if ! $oTopic->getCountFavourite()}style="display: none"{/if}>{$oTopic->getCountFavourite()}</span>
</li>
{* Поделиться *}
<li class="topic-info-share"><a href="#" class="icon-share js-popover-default" title="{$aLang.topic_share}" data-type="popover-toggle" data-option-target="topic_share_{$oTopic->getId()}"></a></li>
{* Ссылка на комментарии *}
{if $bTopicList}
<li class="topic-info-comments">
<a href="{$oTopic->getUrl()}#comments" title="{$aLang.topic_comment_read}">{$oTopic->getCountComment()} {$oTopic->getCountComment()|declension:$aLang.comment_declension}</a>
{if $oTopic->getCountCommentNew()}<span>+{$oTopic->getCountCommentNew()}</span>{/if}
</li>
{/if}
{block name='topic_footer_info_end'}{/block}
{hook run='topic_show_info' topic=$oTopic}
</ul>
{* Всплывающий блок появляющийся при нажатии на кнопку Поделиться *}
<div class="popover" data-type="popover-target" id="topic_share_{$oTopic->getId()}">
<div class="popover-arrow"></div><div class="popover-arrow-inner"></div>
<div class="popover-content" data-type="popover-content">
{hookb run="topic_share" topic=$oTopic bTopicList=$bTopicList}
<div class="yashare-auto-init" data-yashareTitle="{$oTopic->getTitle()|escape:'html'}" data-yashareLink="{$oTopic->getUrl()}" data-yashareL10n="ru" data-yashareType="button" data-yashareQuickServices="yaru,vkontakte,facebook,twitter,odnoklassniki,moimir,lj,gplus"></div>
{/hookb}
</div>
</div>
{if ! $bTopicList}
{hook run='topic_show_end' topic=$oTopic}
{/if}
{block name='topic_footer_end'}{/block}
</footer>
{/block}
{block name='topic_footer_after'}{/block}
</article>
{block name='topic_topic_after'}{/block}