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