How to customize KNPMenuBundle?
I can\'t figure out how to add an image or a span tag using the KnpMenuBundle.
I simply want this:
I spent a while figuring this out.
There is an parameter you can apply when defining the menu item called 'safe_label'. By setting this to true it output the image in the navbar instead of the html.
$image = "
";
$menu->addChild( $image ,
array(
'route' => 'url_route_name',
'extras' => array(
'safe_label' => true
)
)
);
Hope that helps