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

paid-plugins-install-list.twig « templates « Marketplace « plugins - github.com/matomo-org/matomo.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 9a322245d72ae53471cd73501ffa066a5cadafb7 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
<div class="ui-confirm" id="installAllPaidPluginsAtOnce">
    <h2>{{ 'Marketplace_InstallAllPurchasedPlugins'|translate }}</h2>
    <p>
        {{ 'Marketplace_InstallThesePlugins'|translate }}
        <br /><br />
    </p>
    <ul>
        {% for pluginName in paidPluginsToInstallAtOnce %}
            <li>{{ pluginName }}</li>
        {% endfor %}
    </ul>

    <p>
        <a href="{{ linkTo({'action': 'installAllPaidPlugins', 'nonce': installNonce}) }}" class="btn">
            {{ 'Marketplace_InstallAllPurchasedPluginsAction'|translate(paidPluginsToInstallAtOnce|length) }}
        </a>

        <a href="{{ linkTo({'rand': random(999999)}) }}" class="btn-flat">
            Cancel
        </a>
    </p>
</div>