Guest User

Untitled

a guest
Jul 20th, 2018
85
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.58 KB | None | 0 0
  1. function euroinox_menu_item($link, $has_children, $menu = '', $in_active_trail = FALSE, $extra_class = NULL) {
  2. $class = ($menu ? 'expanded' : ($has_children ? 'collapsed' : 'leaf'));
  3. if (!empty($extra_class)) {
  4. $class .= ' '. $extra_class;
  5. }
  6. if ($in_active_trail) {
  7. $class .= ' active-trail';
  8. }
  9. if ($link['depth'] == 1) { // 1 for first level, 2 for second, etc
  10. $class .= ' first-level'; // change first-level to whatever you'd like to be your class, don't forget the space before.
  11. }
  12.  
  13. return '<li class="'. $class .'">'. $link . $menu ."</li>\n";
  14. }
Add Comment
Please, Sign In to add comment