-
-
Save msankhala/d7a8c03f59f394e2f7a0 to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?php | |
function themename_menu_link(&$variables) { | |
$element = $variables['element']; | |
$sub_menu = ''; | |
$element['#attributes']['data-menu-parent'] = $element['#original_link']['menu_name'] . '-' . $element['#original_link']['depth']; | |
if ($element['#below']) { | |
$sub_menu = drupal_render($element['#below']); | |
} | |
$output = l($element['#title'], $element['#href'], $element['#localized_options']); | |
return '<li' . drupal_attributes($element['#attributes']) . '>' . $output . $sub_menu . "</li>\n"; | |
} | |
function themename_preprocess_menu_tree(&$variables) { | |
$tree = new DOMDocument(); | |
@$tree->loadHTML($variables['tree']); | |
$links = $tree->getElementsByTagname('li'); | |
$parent = ''; | |
foreach ($links as $link) { | |
$parent = $link->getAttribute('data-menu-parent'); | |
break; | |
} | |
$variables['menu_parent'] = $parent; | |
} | |
function themename_menu_tree(&$variables) { | |
return '<ul class="menu ' . $variables['menu_parent'] . '">' . $variables['tree'] . '</ul>'; | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment