app/template/default/Block/logo.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. {# 住設ネットロゴ設定 #}
  9. {% set logo_img = asset('assets/img/common/logo.png','user_data') %}
  10. {% set alt = 'miztech' %}
  11. {% set customer_header_class = '' %}
  12. {% if app.user != null %}
  13.     {# ランクがセンリョク基本 #}
  14.     {% if app.user.rank.getId == 3 %}
  15.         {% set customer_header_class = 'senryoku' %}
  16.         {# センリョクロゴ設定 #}
  17.         {% set logo_img = asset('assets/img/common/logo_1000ryoku.png','user_data') %}
  18.         {% set alt = '1000ryoku' %}
  19.     {# ランクがセンリョク仕入れ強化 #}
  20.     {% elseif app.user.rank.getId == 6 %}
  21.         {% set customer_header_class = 'senryoku' %}
  22.         {# センリョクロゴ設定 #}
  23.         {% set logo_img = asset('assets/img/common/logo_1000ryoku.png','user_data') %}
  24.         {% set alt = '1000ryoku' %}
  25.     {# ランクが一人親方 #}
  26.     {% elseif app.user.rank.getId == 5 %}
  27.         {% set customer_header_class = 'oyakata' %}
  28.         {# 一人親方ロゴ設定 #}
  29.         {% set logo_img = asset('assets/img/common/logo_oyakata.png','user_data') %}
  30.         {% set alt = 'oyakata' %}
  31.     {% endif %}
  32. {% endif %}
  33. <div class="ec-headerRole {{ customer_header_class }}">
  34.     <div class="ec-headerRole__title">
  35.         <div class="ec-headerTitle">
  36.             <div class="ec-headerTitle__title">
  37.                 <h1>
  38.                     {#<a href="{{ url('homepage') }}">#}
  39.                         {#{{ BaseInfo.shop_name }}#}
  40.                     <a href="{{ url('homepage') }}"><img src="{{ logo_img }}" alt="{{ alt }}" border="0"></a>
  41.                     {#</a>#}
  42.                 </h1>
  43.             </div>
  44.         </div>
  45.     </div>
  46. </div>