app/template/plugin/Maker42/default/maker.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. <script>
  9.     $(function () {
  10.         $('#maker_area').insertBefore($('div.ec-productRole__category'));
  11.     });
  12. </script>
  13. {% if Product.Maker is not empty %}
  14.     <div id="maker_area" class="ec-productRole__maker product_detail_text">
  15.         {% if Product.maker_url is not empty %}
  16.             <div class="product_detail_text_l fw">{{ 'maker.admin.maker'|trans }}</div>
  17.             <div>
  18.                 <a href="{{ Product.maker_url }}" target="_blank">{{ Product.Maker.name }}</a>
  19.             </div>
  20.         {% else %}
  21.             <div class="product_detail_text_l fw">{{ 'maker.admin.maker'|trans }}</div>
  22.             <div>
  23.                 {{ Product.Maker.name }}
  24.             </div>
  25.         {% endif %}
  26.     </div>
  27. {% endif %}