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

github.com/matomo-org/matomo.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to 'plugins/Marketplace/templates/paid-plugins-install-list.twig')
-rw-r--r--plugins/Marketplace/templates/paid-plugins-install-list.twig22
1 files changed, 22 insertions, 0 deletions
diff --git a/plugins/Marketplace/templates/paid-plugins-install-list.twig b/plugins/Marketplace/templates/paid-plugins-install-list.twig
new file mode 100644
index 0000000000..9a322245d7
--- /dev/null
+++ b/plugins/Marketplace/templates/paid-plugins-install-list.twig
@@ -0,0 +1,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> \ No newline at end of file