blob: 230ccdb64de78b2b66ab805a9df8a03a877c62f4 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
|
{strip}
{if $packageMenuTitle}<a class="dropdown-toggle" data-toggle="dropdown" href="#"> {tr}{$packageMenuTitle}{/tr} <b class="caret"></b></a>{/if}
<ul class="dropdown-menu">
{if $gBitUser->hasPermission( 'p_stats_view' )}
<li><a class="item" href="{$smarty.const.STATS_PKG_URL}index.php">{booticon iname="fa-house" iexplain="Site Stats"}</a></li>
{if $gBitSystem->mDb->mType eq 'postgres'}
<li><a class="item" href="{$smarty.const.STATS_PKG_URL}users.php">{booticon iname="fa-user" iexplain="User Stats"}</a></li>
{/if}
{/if}
{if $gBitSystem->isFeatureActive( 'stats_referers' ) and $gBitUser->hasPermission( 'p_stats_view_referer' )}
<li><a class="item" href="{$smarty.const.STATS_PKG_URL}referrers.php">{booticon iname="fa-bullhorn" iexplain="Referer Stats"}</a></li>
{/if}
</ul>
{/strip}
|