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:
authordiosmosis <diosmosis@users.noreply.github.com>2019-03-07 05:24:03 +0300
committerGitHub <noreply@github.com>2019-03-07 05:24:03 +0300
commite2b9414bf29c12bab57dc7c9630243738e90b458 (patch)
treebca6e3df5e745cfc0107dab61f1c318cdad51d83 /plugins/Marketplace/templates
parent0d5d0dfe40f771d437fa0bf36e8393daa3da07d3 (diff)
Allow updating multiple plugins at once. (#14052)
* Allow updating multiple plugins at once. * Disable checkbox if plugin is not downloadable. * Fix translation typo. * really fix typo
Diffstat (limited to 'plugins/Marketplace/templates')
-rw-r--r--plugins/Marketplace/templates/installPlugin.twig2
-rw-r--r--plugins/Marketplace/templates/updatePlugin.twig5
2 files changed, 6 insertions, 1 deletions
diff --git a/plugins/Marketplace/templates/installPlugin.twig b/plugins/Marketplace/templates/installPlugin.twig
index 7182ed9d16..4c1d3864b8 100644
--- a/plugins/Marketplace/templates/installPlugin.twig
+++ b/plugins/Marketplace/templates/installPlugin.twig
@@ -4,6 +4,7 @@
<div style="max-width:980px;">
+ {% for plugin in plugins %}
<h2>{{ 'Marketplace_InstallingPlugin'|translate(plugin.name) }}</h2>
<div>
@@ -36,6 +37,7 @@
{% endif %}
</div>
+ {% endfor %}
</div>
{% endblock %}
diff --git a/plugins/Marketplace/templates/updatePlugin.twig b/plugins/Marketplace/templates/updatePlugin.twig
index ec920cda92..f9fe08bde8 100644
--- a/plugins/Marketplace/templates/updatePlugin.twig
+++ b/plugins/Marketplace/templates/updatePlugin.twig
@@ -4,6 +4,7 @@
<div style="max-width:980px;">
+ {% for plugin in plugins %}
<h2>{{ 'Marketplace_UpdatingPlugin'|translate(plugin.name) }}</h2>
<div>
@@ -29,7 +30,9 @@
<p>{{ 'Marketplace_StepPluginSuccessfullyUpdated'|translate(plugin.name, plugin.latestVersion) }}</p>
{% endif %}
-
+ </div>
+ {% endfor %}
+ <div>
<p><a href="{{ linkTo({'module': 'CorePluginsAdmin', 'action': 'plugins'}) }}">{{ 'General_Plugins'|translate }}</a>
|
<a href="{{ linkTo({'module': 'CorePluginsAdmin', 'action': 'themes'}) }}">{{ 'CorePluginsAdmin_Themes'|translate }}</a>