aboutsummaryrefslogtreecommitdiffstats
path: root/include/menu.php
diff options
context:
space:
mode:
authorMario Vavti <mario@mariovavti.com>2015-05-07 23:02:14 +0200
committerMario Vavti <mario@mariovavti.com>2015-05-07 23:02:14 +0200
commitcd8ecb86499c7b1fdaff44653cf3771c60ee2454 (patch)
treeea997acd1c98f009020a84411e54396c614ed1e5 /include/menu.php
parentef384be35f745ea0553041808b31fecddce58687 (diff)
downloadvolse-hubzilla-cd8ecb86499c7b1fdaff44653cf3771c60ee2454.tar.gz
volse-hubzilla-cd8ecb86499c7b1fdaff44653cf3771c60ee2454.tar.bz2
volse-hubzilla-cd8ecb86499c7b1fdaff44653cf3771c60ee2454.zip
provide wrap variable for comanche menus
Diffstat (limited to 'include/menu.php')
-rw-r--r--include/menu.php7
1 files changed, 5 insertions, 2 deletions
diff --git a/include/menu.php b/include/menu.php
index b4f4555a5..a2e91f7ed 100644
--- a/include/menu.php
+++ b/include/menu.php
@@ -24,7 +24,7 @@ function menu_fetch($name,$uid,$observer_xchan) {
return null;
}
-function menu_render($menu, $class='', $edit = false) {
+function menu_render($menu, $class='', $edit = false, $var = '') {
if(! $menu)
return '';
@@ -37,12 +37,15 @@ function menu_render($menu, $class='', $edit = false) {
$menu['items'][$x]['mitem_desc'] = bbcode($menu['items'][$x]['mitem_desc']);
}
+ $wrap = (($var['wrap'] === 'none') ? false : true);
+
return replace_macros(get_markup_template('usermenu.tpl'),array(
'$menu' => $menu['menu'],
'$class' => $class,
'$edit' => (($edit) ? t("Edit") : ''),
'$id' => $menu['menu']['menu_id'],
- '$items' => $menu['items']
+ '$items' => $menu['items'],
+ '$wrap' => $wrap
));
}