app/template/default/Block/nav_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. {% if is_granted('ROLE_USER') %}
  9.     {% set _navSpActionCount = listing_action_required_count() + successful_bid_action_required_count() %}
  10.     <div class="ec-headerNavSP">
  11.         <i class="fas fa-bars"></i>
  12.         {% if _navSpActionCount > 0 %}
  13.             <span class="action-required-badge" title="{{ '要対応あり'|trans }}({{ _navSpActionCount }}件)">{{ _navSpActionCount }}</span>
  14.         {% endif %}
  15.     </div>
  16. {% endif %}