comanche: provide an option to add a menu class for different theming choices on some menus (e.g. horizontal, tabbed, etc.)

This commit is contained in:
friendica
2014-02-25 20:58:20 -08:00
parent 1857036a99
commit 364fc9f163
4 changed files with 17 additions and 7 deletions

View File

@@ -24,7 +24,7 @@ function menu_fetch($name,$uid,$observer_xchan) {
return null;
}
function menu_render($menu, $edit = false) {
function menu_render($menu, $class='', $edit = false) {
if(! $menu)
return '';
@@ -38,6 +38,7 @@ function menu_render($menu, $edit = false) {
return replace_macros(get_markup_template('usermenu.tpl'),array(
'$menu' => $menu['menu'],
'$class' => $class,
'$edit' => (($edit) ? t("Edit") : ''),
'$items' => $menu['items']
));