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

home.twig « templates « CoreAdminHome « plugins - github.com/matomo-org/matomo.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: e34b8ce34928edcf0e2a1174698a1886b0ba4063 (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
{% extends 'admin.twig' %}

{% set title %}{{ 'CoreAdminHome_MenuGeneralSettings'|translate }}{% endset %}

{% block content %}
    {% set feedbackHelp %}
        <div piwik-content-block content-title="Need help?">
            <div>
                There are different ways you can get help. There is free support via the Piwik Community and paid support
                provided by the Piwik team and partners of Piwik. Or maybe do you have a bug to report or want to suggest a new
                feature?
                <br />
                <br />
                <a href="{{ linkTo({'module': 'Feedback', 'action': 'index'}) }}">Learn more</a>
            </div>
        </div>
    {% endset %}

    {% if isSuperUser %}
        <div class="row">
            <div class="col s12 {% if isFeedbackEnabled %}m4{% else %}m6{% endif %}">
                <div piwik-widget-loader='{"module":"CoreHome","action":"getSystemSummary"}'></div>
            </div>
            {% if hasDiagnostics %}
                <div class="col s12 {% if isFeedbackEnabled %}m4{% else %}m6{% endif %}">
                    <div piwik-widget-loader='{"module":"Installation","action":"getSystemCheck"}'></div>
                </div>
            {% endif %}
            {% if isFeedbackEnabled %}
                <div class="col s12 m4">
                    {{ feedbackHelp|raw }}
                </div>
            {% endif %}
        </div>
    {% elseif isFeedbackEnabled %}
        {{ feedbackHelp|raw }}
    {% endif %}

    {% if hasPremiumFeatures and isMarketplaceEnabled %}
        <div piwik-widget-loader='{"module":"Marketplace","action":"getPremiumFeatures"}'></div>
    {% endif %}
    {% if hasNewPlugins and isMarketplaceEnabled %}
        <div piwik-widget-loader='{"module":"Marketplace","action":"getNewPlugins", "isAdminPage": "1"}'></div>
    {% endif %}

    {{ postEvent('Template.adminHome') }}

    <style type="text/css">
        #content .piwik-donate-call {
            padding: 0;
            border: 0;
            max-width: none;
        }
        .theWidgetContent .rss {
            margin: -10px -15px;
        }
    </style>

    {% if hasDonateForm or hasPiwikBlog %}
        <div class="row">
            {% if hasDonateForm %}
                <div class="col s12 {% if hasPiwikBlog %}m6{% endif %}">
                    <div piwik-widget-loader='{"module":"CoreHome","action":"getDonateForm","widget": "0"}'></div>
                </div>
            {% endif %}
            {% if hasPiwikBlog %}
                <div class="col s12 {% if hasDonateForm %}m6{% endif %}">
                    <div piwik-widget-loader='{"module":"RssWidget","action":"rssPiwik"}'></div>
                </div>
            {% endif %}
        </div>
    {% endif %}

{% endblock %}