templates/portal/menu.html.twig line 1

Open in your IDE?
  1. {% extends 'knp_menu.html.twig' %}
  2. {% block linkElement %}
  3.     {{ parent() }}
  4.     {% if item.attribute('class') is not empty and item.attribute('class') == 'menu-item--new-inquiry' %}
  5.         {% if app.user %}
  6.             {# Render the notification count for logged-in users #}
  7.             {{ render(controller('App\\Controller\\PortalController::itemsNotification', { 'user': app.user })) }}
  8.         {% else %}
  9.             {# Default value for anonymous users #}
  10.             0
  11.         {% endif %}
  12.     {% endif %}
  13. {% endblock %}