app/template/yamaria/Product/sales_restrictions_cart.twig line 1

Open in your IDE?
  1. {#
  2. * Plugin Name : SalesRestrictions4
  3. *
  4. * Copyright (C) BraTech Co., Ltd. All Rights Reserved.
  5. * http://www.bratech.co.jp/
  6. *
  7. * For the full copyright and license information, please view the LICENSE
  8. * file that was distributed with this source code.
  9. #}
  10. <style>
  11. .sales-restrictions {
  12.     background: #f8f8f8;
  13.     border: 1px solid #d9d9d9;
  14.     margin: 20px 0;
  15.     padding: 16px;
  16. }
  17. .sales-restrictions span {
  18.     color: #de5d50;
  19.     font-weight: bold;
  20. }
  21. </style>
  22. <div class="sales-restrictions">
  23.     {% if is_granted('ROLE_USER') == false %}
  24.     <span>この商品は販売制限されております。<br />
  25.     ご当選者はログイン状態で購入ボタンが表示されます。</span>
  26.     <!--会員の方はログイン後再度ご確認ください。<br />
  27.     非会員の方は会員登録頂き再度ご確認ください。<br />-->
  28.     {% else %}
  29.     <!--この商品は販売制限されております。-->
  30.     {% endif %}
  31. </div>