app/template/bravers/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>この商品は販売制限されております。</span><br />
  25.     会員の方はログイン後再度ご確認ください。<br />
  26.     非会員の方は会員登録頂き再度ご確認ください。<br />
  27.     {% else %}
  28.     この商品は販売制限されております。
  29.     {% endif %}
  30. </div>