1
0
Fork 0
mirror of https://github.com/Oreolek/ifhub.club.git synced 2024-07-05 07:54:24 +03:00
ifhub.club/application/frontend/skin/developer/navs/nav.user.favourite.tpl

16 lines
775 B
Smarty

{**
* Навигация в профиле пользователя в разделе "Избранное"
*}
<ul class="nav nav-pills mb-30">
<li {if $sMenuSubItemSelect=='topics'}class="active"{/if}>
<a href="{$oUserProfile->getUserWebPath()}favourites/topics/">{$aLang.user_menu_profile_favourites_topics} {if $iCountTopicFavourite} ({$iCountTopicFavourite}) {/if}</a>
</li>
<li {if $sMenuSubItemSelect=='comments'}class="active"{/if}>
<a href="{$oUserProfile->getUserWebPath()}favourites/comments/">{$aLang.user_menu_profile_favourites_comments} {if $iCountCommentFavourite} ({$iCountCommentFavourite}) {/if}</a>
</li>
{hook run='menu_profile_favourite_item' oUserProfile=$oUserProfile}
</ul>
{hook run='menu_profile_favourite' oUserProfile=$oUserProfile}