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

header.tpl « templates « CoreAdminHome « plugins - github.com/matomo-org/matomo.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 84a8407b0a563d1d6618ceecb323286ddd28e0c7 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
<!DOCTYPE html>
<!--[if lt IE 9 ]>
<html class="old-ie"> <![endif]-->
<!--[if (gte IE 9)|!(IE)]><!-->
<html><!--<![endif]-->
<head>
    <title>{if !$isCustomLogo}Piwik &rsaquo; {/if}{'CoreAdminHome_Administration'|translate}</title>
    <meta http-equiv="Content-Type" content="text/html; charset=utf-8"/>
    <meta name="generator" content="Piwik - Open Source Web Analytics"/>
    <link rel="shortcut icon" href="plugins/CoreHome/templates/images/favicon.ico"/>

    {loadJavascriptTranslations plugins='CoreAdminHome CoreHome'}

    {include file="CoreHome/templates/js_global_variables.tpl"}
    {include file="CoreHome/templates/js_css_includes.tpl"}
    <!--[if IE]>
    <link rel="stylesheet" type="text/css" href="themes/default/ieonly.css"/>
    <![endif]-->
    {include file="CoreHome/templates/iframe_buster_header.tpl"}
</head>
<body>
{include file="CoreHome/templates/iframe_buster_body.tpl"}

<div id="root">
    {if !isset($showTopMenu) || $showTopMenu}
        {assign var=showSitesSelection value=false}
        {assign var=showPeriodSelection value=false}
        {include file="CoreHome/templates/top_bar.tpl"}
    {/if}

    <div id="header">
        {include file="CoreHome/templates/logo.tpl"}
        {if $showPeriodSelection}{include file="CoreHome/templates/period_select.tpl"}{/if}
        {include file="CoreHome/templates/js_disabled_notice.tpl"}
    </div>

    {ajaxRequestErrorDiv}
    <div id="container">
        {if !isset($showMenu) || $showMenu}
            {include file="CoreAdminHome/templates/menu.tpl"}
        {/if}

        <div id="content" class="admin">

            {include file="CoreHome/templates/header_message.tpl"}

            {if !empty($configFileNotWritable)}
                <div class="ajaxSuccess" style="display:inline-block">
                    {'General_ConfigFileIsNotWritable'|translate:"(config/config.ini.php)":"<br/>"}
                </div>
            {elseif preg_match('/updated=[1-9]/', $url)}
                <div class="ajaxSuccess" style="display:inline-block">
                    {'General_YourChangesHaveBeenSaved'|translate}
                </div>
            {/if}

            {if !empty($statisticsNotRecorded)}
                <div class="ajaxSuccess" style="display:inline-block">
                    {'General_StatisticsAreNotRecorded'|translate}
                </div>
            {/if}

            <div class="ui-confirm" id="alert">
                <h2></h2>
                <input role="no" type="button" value="{'General_Ok'|translate}"/>
            </div>

            {include file="CoreHome/templates/warning_invalid_host.tpl"}

            {* missing plugins warning *}
            {if $isSuperUser && !empty($missingPluginsWarning)}
                <div class="ajaxSuccess">
                    <strong>{'General_Warning'|translate}:&nbsp;</strong>{$missingPluginsWarning}
                </div>
            {/if}

            {* old GeoIP plugin warning *}
            {if $isSuperUser && !empty($usingOldGeoIPPlugin)}
                <div class="ajaxSuccess">
                    <strong>{'General_Warning'|translate}
                        :&nbsp;</strong>{'UserCountry_OldGeoIPWarning'|translate:'<a href="index.php?module=CorePluginsAdmin&action=index&idSite=1&period=day&date=yesterday">':'</a>':'<a href="index.php?module=UserCountry&action=adminIndex&idSite=1&period=day&date=yesterday#location-providers">':'</a>':'<a href="http://piwik.org/faq/how-to/#faq_167">':'</a>':'<a href="http://piwik.org/faq/how-to/#faq_59">':'</a>'}
                </div>
            {/if}