vendor/knplabs/knp-menu-bundle/templates/menu.html.twig line 1

Open in your IDE?
  1. {% extends 'knp_menu.html.twig' %}
  2. {% block label %}
  3. {%- set translation_domain = item.extra('translation_domain', 'messages') -%}
  4. {%- set label = item.label -%}
  5. {%- if translation_domain is not same as(false) -%}
  6. {%- set label = label|trans(item.extra('translation_params', {}), translation_domain) -%}
  7. {%- endif -%}
  8. {%- if options.allow_safe_labels and item.extra('safe_label', false) %}{{ label|raw }}{% else %}{{ label }}{% endif -%}
  9. {% endblock %}