1
0
Fork 0
mirror of https://github.com/Oreolek/ifhub.club.git synced 2024-07-03 06:55:03 +03:00
ifhub.club/templates/skin/developer/menu.profile_created.tpl

21 lines
978 B
Smarty
Raw Normal View History

<h3 class="profile-page-header">{$aLang.user_menu_publication}</h3>
<ul class="nav nav-pills nav-pills-profile">
2012-04-20 13:36:07 +03:00
<li {if $sMenuSubItemSelect=='topics'}class="active"{/if}>
<a href="{$oUserProfile->getUserWebPath()}created/topics/">{$aLang.topic_title} {if $iCountTopicUser} ({$iCountTopicUser}) {/if}</a>
</li>
2012-04-20 13:36:07 +03:00
<li {if $sMenuSubItemSelect=='comments'}class="active"{/if}>
<a href="{$oUserProfile->getUserWebPath()}created/comments/">{$aLang.user_menu_publication_comment} {if $iCountCommentUser} ({$iCountCommentUser}) {/if}</a>
</li>
{if $oUserCurrent and $oUserCurrent->getId()==$oUserProfile->getId()}
2012-04-20 13:36:07 +03:00
<li {if $sMenuSubItemSelect=='notes'}class="active"{/if}>
<a href="{$oUserProfile->getUserWebPath()}created/notes/">{$aLang.user_menu_profile_notes} {if $iCountNoteUser} ({$iCountNoteUser}) {/if}</a>
</li>
{/if}
{hook run='menu_profile_created_item' oUserProfile=$oUserProfile}
</ul>
{hook run='menu_profile_created' oUserProfile=$oUserProfile}