I'm trying to extend the default breadcrumbs in Music template:
- Code: Select all
/gk_music/html/mod_breadcrumbs/default.php
- Code: Select all
else echo '<li class="pathway">' . $list[$i]->name . '</li>';
I would like to replace the <li> class with default "pathway" to the params of the current breadcrumb. I can see in database, that the param I'm trying to get is: menu-anchor_css
How can I do that?
Have tried something like this:
- Code: Select all
else echo '<li class="'.$list[$i]->$params->get('menu-anchor_css').'"></li>"
Any help would be appreciated
Henrik