app/template/default/Block/login_sp.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. <div class="fixed">
  9.     {% if is_granted('ROLE_USER') %}
  10.         <a class="fixed__btn _login" href="{{ url('mypage') }}">
  11.             <img src="{{ asset('assets/img/icon/ico_man.png','user_data') }}" alt="">
  12.             <span>
  13.                 マイページ
  14.             </span>
  15.         </a>
  16.         <a class="fixed__btn _logout" href="{{ url('logout') }}">
  17.             <img src="{{ asset('assets/img/icon/ico_logout.png','user_data') }}" alt="">
  18.             <span>
  19.                 ログアウト
  20.             </span>
  21.         </a>
  22.         <a class="fixed__btn _cart" href="{{ url('cart') }}">
  23.             <img src="{{ asset('assets/img/icon/ico_cart.png','user_data') }}" alt="">
  24.             <span>
  25.                 カート
  26.             </span>
  27.         </a>
  28.     {% else %}
  29.         <a class="fixed__btn _login" href="{{url( 'mypage_login') }}">
  30.             <img src="{{ asset('assets/img/icon/ico_man.png','user_data') }}" alt="">
  31.             <span>
  32.                 ログイン
  33.             </span>
  34.         </a>
  35.         <a class="fixed__btn _cart" href="{{ url('cart') }}">
  36.             <img src="{{ asset('assets/img/icon/ico_cart.png','user_data') }}" alt="">
  37.             <span>
  38.                 カート
  39.             </span>
  40.         </a>
  41.     {% endif %}
  42. </div>