Welcome to mirror list, hosted at ThFree Co, Russian Federation.

top_bar_top_menu.tpl « templates « CoreHome « plugins - github.com/matomo-org/matomo.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 844549f8dfbb07f2e1e30b6d3e36923c6b1fc621 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
<div id="topLeftBar">
    {foreach from=$topMenu key=label item=menu name=topMenu}

        {if isset($menu._html)}
            {$menu._html}
        {elseif $menu._url.module == $currentModule && (empty($menu._url.action) || $menu._url.action == $currentAction)}
            <span class="topBarElem"><b>{$label|translate}</b></span>
            |
        {else}
            <span class="topBarElem" {if isset($menu._tooltip)}title="{$menu._tooltip}"{/if}><a id="topmenu-{$menu._url.module|strtolower}"
                                                                                                href="index.php{$menu._url|@urlRewriteWithParameters}">{$label|translate}</a></span>
            |
        {/if}

    {/foreach}
</div>