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

subscription-overview.twig « templates « Marketplace « plugins - github.com/matomo-org/matomo.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 0ace015545a0385f04c4eaa710ce675b3b5b016b (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
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
{% extends mode is defined and mode == 'user' ? "user.twig" : "admin.twig" %}
{% import '@Marketplace/macros.twig' as marketplaceMacro %}

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

{% block content %}

    <div piwik-content-block
         content-title="{{ 'Marketplace_OverviewPluginSubscriptions'|translate|e('html_attr') }}"
         class="subscriptionOverview">

        {% if hasLicenseKey %}
            <p>
                {{ 'Marketplace_PluginSubscriptionsList'|translate }}
                {% if loginUrl %}
                    <a target="_blank" rel="noreferrer" href="{{ loginUrl }}">{{ 'Marketplace_OverviewPluginSubscriptionsAllDetails'|translate }}</a>
                {% endif %}
                <br/>
                {{ 'Marketplace_OverviewPluginSubscriptionsMissingInfo'|translate }}
                <br />

                {{ 'Marketplace_NoValidSubscriptionNoUpdates'|translate }}
                {{ 'Marketplace_CurrentNumPiwikUsers'|translate('<strong>' ~ numUsers ~ '</strong>')|raw }}
            </p>

            <br />

            <table piwik-content-table>
                <thead>
                <tr>
                    <th>{{ 'General_Name'|translate }}</th>
                    <th>{{ 'Marketplace_SubscriptionType'|translate }}</th>
                    <th>{{ 'CorePluginsAdmin_Status'|translate }}</th>
                    <th>{{ 'Marketplace_SubscriptionStartDate'|translate }}</th>
                    <th>{{ 'Marketplace_SubscriptionEndDate'|translate }}</th>
                    <th>{{ 'Marketplace_SubscriptionNextPaymentDate'|translate }}</th>
                </tr>
                </thead>
                <tbody>
                {% if subscriptions|length %}
                    {% for subscription in subscriptions %}
                        <tr>
                            <td class="subscriptionName">
                                {% if subscription.plugin.htmlUrl %}
                                    <a href="{{ subscription.plugin.htmlUrl }}" rel="noreferrer" target="_blank">
                                {% endif %}

                                {{ subscription.plugin.displayName }}

                                {% if subscription.plugin.htmlUrl %}
                                    </a>
                                {% endif %}
                            </td>
                            <td class="subscriptionType">{{ subscription.productType }}</td>
                            <td class="subscriptionStatus"
                                title="{% if not subscription.isValid %}{{ 'Marketplace_SubscriptionInvalid'|translate|e('html_attr') }}{% elseif subscription.isExpiredSoon %}{{ 'Marketplace_SubscriptionExpiresSoon'|translate|e('html_attr') }}{% endif %}">
                                {% if not subscription.isValid %}
                                    <span class="icon-error"></span>
                                {% elseif subscription.isExpiredSoon %}
                                    <span class="icon-warning"></span>
                                {% else %}
                                    <span class="icon-ok"></span>
                                {% endif %}

                                {{ subscription.status }}

                                {% if subscription.isExceeded is defined and subscription.isExceeded %}
                                    <span class="errorMessage" title="{{ 'Marketplace_LicenseExceededPossibleCause'|translate }}"><span class="icon-error"></span> {{ 'Marketplace_Exceeded'|translate }}</span>
                                {% endif %}
                            </td>
                            <td>{{ subscription.start }}</td>
                            <td>{% if subscription.isValid and subscription.nextPayment %}
                                    {{ 'Marketplace_LicenseRenewsNextPaymentDate'|translate }}
                                {% else %}
                                    {{ subscription.end }}
                                {% endif %}
                            </td>
                            <td>{{ subscription.nextPayment }}</td>

                        </tr>
                    {% endfor %}
                {% else %}
                    <tr><td colspan="6">{{ 'Marketplace_NoSubscriptionsFound'|translate }}</td></tr>
                {% endif %}
                </tbody>
            </table>

            <div class="tableActionBar">
                <a href="{{ linkTo({'module':"Marketplace", 'action':"overview"}) }}"
                   class="">
                    <span class="icon-table"></span>
                    {{ 'Marketplace_BrowseMarketplace'|translate }}
                </a>
            </div>

        {% else %}
            <p>{{ 'Marketplace_OverviewPluginSubscriptionsMissingLicense'|translate('<a href="'~ linkTo({'module':"Marketplace", 'action':"overview"}) ~'">', '</a>')|raw }}</p>
        {% endif %}
    </div>

{% endblock %}