Git Product home page Git Product logo

Comments (2)

canni avatar canni commented on July 27, 2024

Or mayby something more "clear"

diff --git src/Knp/Menu/Resources/views/knp_menu.html.twig src/Knp/Menu/Resources/views/knp_menu.html.twig
index 5bc74ac..3ad83d0 100644
--- src/Knp/Menu/Resources/views/knp_menu.html.twig
+++ src/Knp/Menu/Resources/views/knp_menu.html.twig
@@ -57,9 +57,9 @@
 {# displaying the item #}
     <li{{ _self.attributes(attributes) }}>
         {%- if item.uri is not empty and (not item.current or options.currentAsLink) %}
-        <a href="{{ item.uri }}"{{ _self.attributes(item.linkAttributes) }}>{{ block('label') }}</a>
+        {{ block('linkElement') }}
         {%- else %}
-        <span{{ _self.attributes(item.labelAttributes) }}>{{ block('label') }}</span>
+        {{ block('spanElement') }}
         {%- endif %}
         {%- if item.hasChildren and options.depth is not sameas(0) and item.displayChildren %}
             <ul{{ _self.attributes({'class': 'menu_level_' ~ item.level }) }}>
@@ -70,4 +70,8 @@
 {% endif %}
 {% endblock %}

+{% block linkElement %}<a href="{{ item.uri }}"{{ _self.attributes(item.linkAttributes) }}>{{ block('label') }}</a>{% endblock %}
+
+{% block spanElement %}<span{{ _self.attributes(item.labelAttributes) }}>{{ block('label') }}</span>{% endblock %}
+
 {% block label %}{{ item.label }}{% endblock %}

from knpmenu.

canni avatar canni commented on July 27, 2024

Issue converted into pull request, cos my changes went into /dev/null after vendors install :)

from knpmenu.

Related Issues (20)

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.