src/Eccube/Resource/template/admin/Store/plugin_detail_info.twig line 1

Open in your IDE?
  1. {#
  2. This file is part of EC-CUBE
  3. Copyright(c) EC-CUBE CO.,LTD. All Rights Reserved.
  4. http://www.ec-cube.co.jp/
  5. For the full copyright and license information, please view the LICENSE
  6. file that was distributed with this source code.
  7. #}
  8. <ul class="plugin-ver col-12 mb-4">
  9.     {% if not item.price %}
  10.     <li class="row"><span class="fw-bold col-7 col-sm-6 ps-0">{{ 'admin.store.plugin.detail.download'|trans }}</span>{{ item.downloads|number_format }}</li>
  11.     {% endif %}
  12.     <li class="row"><span class="fw-bold col-7 col-sm-6 ps-0">{{ 'admin.store.plugin.detail.version'|trans }}</span>{{ item.version }}</li>
  13.     <li class="row"><span class="fw-bold col-7 col-sm-6 ps-0">{{ 'admin.store.plugin.detail.support'|trans }}</span>{% for version in item.supported_versions %}{{ version }} {%- if loop.last == false%}, {% endif -%}{% endfor %}</li>
  14.     <li class="row"><span class="fw-bold col-7 col-sm-6 ps-0">{{ 'admin.store.plugin.detail.public_date'|trans }}</span>{{ item.publish_date|date_day }}</li>
  15.     <li class="row"><span class="fw-bold col-7 col-sm-6 ps-0">{{ 'admin.store.plugin.detail.update_date'|trans }}</span>{{ item.update_date|date_day }}</li>
  16.     <li class="row"><span class="fw-bold col-7 col-sm-6 ps-0">{{ 'admin.store.plugin.detail.license'|trans }}</span>{{ item.license }}</li>
  17.     <li class="row a"><span class="fw-bold col-7 col-sm-6 ps-0">{{ 'admin.store.plugin.detail.develop'|trans }}</span>
  18.         {% if item.author is not empty %}
  19.             {% if item.author.url is not empty %}
  20.                 <a class="col-auto ps-0" href="{{ item.author.url }}" target="_blank">{{ item.author.name }}</a>{% else %}{{ item.author.name }}
  21.             {% endif %}
  22.         {% endif %}
  23.     </li>
  24. </ul>