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/plugin-list.twig')
-rw-r--r--plugins/Marketplace/templates/plugin-list.twig159
1 files changed, 159 insertions, 0 deletions
diff --git a/plugins/Marketplace/templates/plugin-list.twig b/plugins/Marketplace/templates/plugin-list.twig
new file mode 100644
index 0000000000..d071fad3d8
--- /dev/null
+++ b/plugins/Marketplace/templates/plugin-list.twig
@@ -0,0 +1,159 @@
+{% import '@Marketplace/macros.twig' as marketplaceMacro %}
+
+{% if pluginsToShow|length > 0 %}
+ <div class="pluginListContainer row">
+ {% for plugin in pluginsToShow %}
+ <div class="col s12 m6 l4">
+ {% embed 'contentBlock.twig' with {'title': ''} %}
+ {% block content %}
+ <div class="plugin">
+ <h3 class="card-title" title="{{ 'General_MoreDetails'|translate }}">
+ <a href="#" piwik-plugin-name="{{ plugin.name }}">{{ plugin.displayName }}</a>
+ </h3>
+
+ <p class="description">
+ {{ plugin.description }}
+ <a class="more" href="#" piwik-plugin-name="{{ plugin.name }}" title="{{ 'General_MoreDetails'|translate }}">
+ &rsaquo; {{ 'General_MoreLowerCase'|translate }}</a>
+ </p>
+
+ {% if showThemes %}
+ {# Screenshot for themes #}
+ <a class="more" href="#" piwik-plugin-name="{{ plugin.name }}">
+ <img title="{{ 'General_MoreDetails'|translate }}"
+ class="preview" src="{{ plugin.screenshots|first }}?w=250&h=150"/></a>
+ {% endif %}
+
+ <ul class="metadata">
+ <li>
+ {% if plugin.latestVersion %}
+ {{ 'CorePluginsAdmin_Version'|translate }}: {{ plugin.latestVersion }}
+ {% endif %}
+
+ {% if plugin.canBeUpdated %}
+ <a class="update-available" href="#" piwik-plugin-name="{{ plugin.name }}" data-activePluginTab="changelog"
+ title="{{ 'Marketplace_PluginUpdateAvailable'|translate(plugin.currentVersion, plugin.latestVersion) }}">
+ {{ 'Marketplace_NewVersion'|translate }}</a>
+ {% endif %}
+ </li>
+ {% if plugin.lastUpdated %}
+ <li>{{ 'Marketplace_Updated'|translate }}: {{ plugin.lastUpdated }}</li>
+ {% endif %}
+ {% if plugin.numDownloads %}
+ <li>{{ 'General_Downloads'|translate }}: {{ plugin.numDownloads }}</li>
+ {% endif %}
+ <li>{{ 'Marketplace_Developer'|translate }}: {{ marketplaceMacro.pluginDeveloper(plugin.owner) }}</li>
+ </ul>
+
+ {% macro moreDetailsLink(plugin) %}
+ {% set canBePurchased = not plugin.isDownloadable and plugin.shop is defined and plugin.shop and plugin.shop.url %}
+ <a class="btn btn-block plugin-details {% if canBePurchased %}purchaseable{% endif %}" href="#" piwik-plugin-name="{{ plugin.name }}" title="{{ 'General_MoreDetails'|translate }}">
+
+ {% if canBePurchased and plugin.shop.variations %}
+ {% set foundCheapest = 0 %}
+ {% for variation in plugin.shop.variations %}
+ {% if not foundCheapest and variation.cheapest is defined and variation.cheapest %}
+ {% set foundCheapest = 1 %}
+ {{ 'Marketplace_PriceFromPerPeriod'|translate(variation.prettyPrice, variation.period) }}
+ {% endif %}
+ {% endfor %}
+ {% if not foundCheapest %}
+ {{ 'Marketplace_PriceFromPerPeriod'|translate(plugin.shop.variations.0.prettyPrice, plugin.shop.variations.0.period) }}
+ {% endif %}
+ {% else %}
+ {{ 'General_MoreDetails'|translate }}
+ {% endif %}
+
+ </a>
+ {% endmacro %}
+
+
+ {% if isSuperUser %}
+ <div class="footer">
+ {% if plugin.isMissingLicense is defined and plugin.isMissingLicense %}
+
+ <div class="alert alert-danger" >
+ {{ 'Marketplace_LicenseMissing'|translate }}
+
+ <span style="white-space:nowrap">(<a class="plugin-details" href="#" piwik-plugin-name="{{ plugin.name }}" title="{{ 'General_MoreDetails'|translate }}">{{ 'General_Help'|translate }}</a>)</span>
+ </div>
+
+ {% elseif plugin.hasExceededLicense is defined and plugin.hasExceededLicense %}
+
+ <div class="alert alert-danger">
+ {{ 'Marketplace_LicenseExceeded'|translate }}
+
+ <span style="white-space:nowrap">(<a class="plugin-details" href="#" piwik-plugin-name="{{ plugin.name }}" title="{{ 'General_MoreDetails'|translate }}">{{ 'General_Help'|translate }}</a>)</span>
+ </div>
+
+ {% elseif plugin.canBeUpdated and 0 == plugin.missingRequirements|length and isAutoUpdatePossible %}
+ <a class="btn btn-block"
+ href="{{ linkTo({'module': 'Marketplace', 'action':'updatePlugin', 'pluginName': plugin.name, 'nonce': updateNonce}) }}">
+ {{ 'CoreUpdater_UpdateTitle'|translate }}
+ </a>
+ {% elseif plugin.missingRequirements|length > 0 or not isAutoUpdatePossible %}
+
+ {% macro downloadButton(showOr, plugin, isAutoUpdatePossible, showBrackets = false) -%}
+ {%- if plugin.missingRequirements|length == 0 and plugin.isDownloadable and not isAutoUpdatePossible -%}
+ {% if showBrackets %}({% endif %}<span onclick="$(this).css('display', 'none')">
+ {%- if showOr %} {{ 'General_Or'|translate }} {% endif -%}
+ <a class="plugin-details download"
+ href="{{ linkTo({'module': 'Marketplace', 'action': 'download', 'pluginName': plugin.name, 'nonce': (plugin.name|nonce)}) }}"
+ >{{ 'General_Download'|translate }}</a></span>{% if showBrackets %}){% endif %}
+ {%- endif -%}
+ {%- endmacro %}
+
+ {% if plugin.canBeUpdated and 0 == plugin.missingRequirements|length %}
+ {{ 'Marketplace_CannotUpdate'|translate }}
+ <span style="white-space:nowrap">(<a class="plugin-details" href="#" piwik-plugin-name="{{ plugin.name }}" title="{{ 'General_MoreDetails'|translate }}">{{ 'General_Help'|translate }}</a>{{ _self.downloadButton(true, plugin, isAutoUpdatePossible)|raw }})</span>
+ {% elseif plugin.isInstalled %}
+ {{ 'General_Installed'|translate }}
+ {{ _self.downloadButton(false, plugin, isAutoUpdatePossible, true)|raw }}
+ {% elseif not plugin.isDownloadable %}
+ {{ _self.moreDetailsLink(plugin)|raw }}
+ {% else %}
+ {{ 'Marketplace_CannotInstall'|translate }}
+
+ <span style="white-space:nowrap">(<a class="plugin-details" href="#" piwik-plugin-name="{{ plugin.name }}" title="{{ 'General_MoreDetails'|translate }}">{{ 'General_Help'|translate }}</a>{{ _self.downloadButton(true, plugin, isAutoUpdatePossible)|raw }})</span>
+ {% endif %}
+
+ {% elseif plugin.isInstalled %}
+ {{ 'General_Installed'|translate }}
+
+ {% if not plugin.isInvalid and not isMultiServerEnvironment and isPluginsAdminEnabled %}
+ ({{ pluginsMacro.pluginActivateDeactivateAction(plugin.name, plugin.isActivated, plugin.missingRequirements, deactivateNonce, activateNonce) }})
+ {% endif %}
+
+ {% elseif plugin.isPaid and not plugin.isDownloadable %}
+ {{ _self.moreDetailsLink(plugin)|raw }}
+ {% else %}
+ <a href="{{ linkTo({'module': 'Marketplace', 'action': 'installPlugin', 'pluginName': plugin.name, 'nonce': installNonce}) }}"
+ class="btn">
+ {{ 'Marketplace_ActionInstall'|translate }}
+ </a>
+ {% endif %}
+ </div>
+ {% else %}
+ <div class="footer">
+ {{ _self.moreDetailsLink(plugin)|raw }}
+ </div>
+ {% endif %}
+
+ </div>
+ {% endblock %}
+ {% endembed %}
+ </div>
+ {% endfor %}
+ </div>
+{% endif %}
+
+{% if pluginsToShow|length == 0 %}
+ <div piwik-content-block>
+ {% if showThemes %}
+ {{ 'Marketplace_NoThemesFound'|translate }}
+ {% else %}
+ {{ 'Marketplace_NoPluginsFound'|translate }}
+ {% endif %}
+ </div>
+{% endif %}
+