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/getNewPlugins.twig')
-rw-r--r--plugins/Marketplace/templates/getNewPlugins.twig22
1 files changed, 22 insertions, 0 deletions
diff --git a/plugins/Marketplace/templates/getNewPlugins.twig b/plugins/Marketplace/templates/getNewPlugins.twig
new file mode 100644
index 0000000000..0c68e552e3
--- /dev/null
+++ b/plugins/Marketplace/templates/getNewPlugins.twig
@@ -0,0 +1,22 @@
+<div class="getNewPlugins">
+ <div class="row">
+ {% for plugin in plugins %}
+ <div class="col s12">
+
+ <h3 class="pluginName" piwik-plugin-name="{{ plugin.name|e('html_attr') }}">{{ plugin.name }}</h3>
+ <span>
+ {{ plugin.description }}
+ <br />
+ <a href="javascript:;" piwik-plugin-name="{{ plugin.name|e('html_attr') }}">{{ 'General_MoreDetails'|translate }}</a>
+ </span>
+
+ {% if not loop.last %}<br /><br />{% endif %}
+ </div>
+ {% endfor %}
+ </div>
+
+ <div class="widgetBody">
+ <a href="{{ linkTo({'module': 'CorePluginsAdmin', 'action': 'marketplace'}) }}"
+ >{{ 'CorePluginsAdmin_ViewAllMarketplacePlugins'|translate }}</a>
+ </div>
+</div> \ No newline at end of file