{#
This file is part of EC-CUBE
Copyright(c) EC-CUBE CO.,LTD. All Rights Reserved.
http://www.ec-cube.co.jp/
For the full copyright and license information, please view the LICENSE
file that was distributed with this source code.
#}
{# 住設ネットロゴ設定 #}
{% set logo_img = asset('assets/img/common/logo.png','user_data') %}
{% set alt = 'miztech' %}
{% set customer_header_class = '' %}
{% if app.user != null %}
{# ランクがセンリョク基本 #}
{% if app.user.rank.getId == 3 %}
{% set customer_header_class = 'senryoku' %}
{# センリョクロゴ設定 #}
{% set logo_img = asset('assets/img/common/logo_1000ryoku.png','user_data') %}
{% set alt = '1000ryoku' %}
{# ランクがセンリョク仕入れ強化 #}
{% elseif app.user.rank.getId == 6 %}
{% set customer_header_class = 'senryoku' %}
{# センリョクロゴ設定 #}
{% set logo_img = asset('assets/img/common/logo_1000ryoku.png','user_data') %}
{% set alt = '1000ryoku' %}
{# ランクが一人親方 #}
{% elseif app.user.rank.getId == 5 %}
{% set customer_header_class = 'oyakata' %}
{# 一人親方ロゴ設定 #}
{% set logo_img = asset('assets/img/common/logo_oyakata.png','user_data') %}
{% set alt = 'oyakata' %}
{% endif %}
{% endif %}
<div class="ec-headerRole {{ customer_header_class }}">
<div class="ec-headerRole__title">
<div class="ec-headerTitle">
<div class="ec-headerTitle__title">
<h1>
{#<a href="{{ url('homepage') }}">#}
{#{{ BaseInfo.shop_name }}#}
<a href="{{ url('homepage') }}"><img src="{{ logo_img }}" alt="{{ alt }}" border="0"></a>
{#</a>#}
</h1>
</div>
</div>
</div>
</div>