menu-minipanel.tpl.php in Menu Minipanels 7.2
Default theme implementation for Menu MiniPanel containers.
Various menu helper modules in the contrib space expect sub-menus to be wrapped inside an unordered list, so we do this by default. You may over- ride this funtionality in your theme.
Variables:
- minipanel: the rendered minipanel.
- minipanel_name: the machine name of the minipanel.
- mlid: the menu item id associated with the the minipanel.
1 theme call to menu-minipanel.tpl.php
- menu_minipanels_theme_link in ./
menu_minipanels.module - Replacement theme function for theme_link().
File
theme/menu-minipanel.tpl.phpView source
<?php
/**
* @file
* Default theme implementation for Menu MiniPanel containers.
*
* Various menu helper modules in the contrib space expect sub-menus to be
* wrapped inside an unordered list, so we do this by default. You may over-
* ride this funtionality in your theme.
*
* Variables:
* - minipanel: the rendered minipanel.
* - minipanel_name: the machine name of the minipanel.
* - mlid: the menu item id associated with the the minipanel.
*/
?>
<ul class="<?php
echo $classes;
?>">
<li class="first odd last">
<?php
echo $minipanel;
?>
</li>
</ul>