function theme_acquia_lift_navbar_menu_tree in Acquia Lift Connector 7
Same name and namespace in other branches
- 7.2 acquia_lift.module \theme_acquia_lift_navbar_menu_tree()
Returns HTML for a wrapper for the acquia lift navbar subtree.
Parameters
$variables: An associative array containing:
- tree: An HTML string containing the tree's items.
See also
template_preprocess_navbar_menu_tree()
1 string reference to 'theme_acquia_lift_navbar_menu_tree'
- acquia_lift_theme in ./
acquia_lift.module - Implements hook_theme().
File
- ./
acquia_lift.module, line 2763 - acquia_lift.module Provides Acquia Lift-specific personalization functionality.
Code
function theme_acquia_lift_navbar_menu_tree(&$variables) {
return '<ul class="' . acquia_lift_unibar_menu_class() . '">' . $variables['tree'] . '</ul>';
}