diff options
author | friendica <info@friendica.com> | 2013-08-13 01:24:02 -0700 |
---|---|---|
committer | friendica <info@friendica.com> | 2013-08-13 01:24:02 -0700 |
commit | 55cb32248953c6e63a2da478f0eb3895875f93d8 (patch) | |
tree | 255c936a39290e5e2e089334030791fb084ca1e8 | |
parent | 04f8de184e8c925e38335eb18c102985ce421f95 (diff) | |
download | volse-hubzilla-55cb32248953c6e63a2da478f0eb3895875f93d8.tar.gz volse-hubzilla-55cb32248953c6e63a2da478f0eb3895875f93d8.tar.bz2 volse-hubzilla-55cb32248953c6e63a2da478f0eb3895875f93d8.zip |
a bit more work on menus
-rw-r--r-- | include/menu.php | 8 | ||||
-rw-r--r-- | mod/menu.php | 18 | ||||
-rw-r--r-- | version.inc | 2 | ||||
-rw-r--r-- | view/tpl/menulist.tpl | 16 |
4 files changed, 43 insertions, 1 deletions
diff --git a/include/menu.php b/include/menu.php index ad9d3eb1c..951a2b1fe 100644 --- a/include/menu.php +++ b/include/menu.php @@ -80,6 +80,14 @@ function menu_create($arr) { } +function menu_list($channel_id) { + $r = q("select * from menu where menu_channel_id = %d order by menu_name", + intval($channel_id) + ); + return $r; +} + + function menu_edit($arr) { diff --git a/mod/menu.php b/mod/menu.php index 3198027f4..a624b4727 100644 --- a/mod/menu.php +++ b/mod/menu.php @@ -27,6 +27,24 @@ function menu_content(&$a) { if(argc() == 1) { // list menus + $x = menu_list(local_user()); + if($x) { + $o = replace_macros(get_markup_template('menulist.tpl'),array( + '$title' => t('Manage Menus'), + '$menus' => $x, + '$edit' => t('Edit'), + '$drop' => t('Drop'), + '$new' => t('New'), + '$hintnew' => t('Create a new menu'), + '$hintdrop' => t('Delete this menu'), + '$hintedit' => t('Edit this menu') + )); + } + return $o; + + + + } diff --git a/version.inc b/version.inc index d95786ab1..551ca203d 100644 --- a/version.inc +++ b/version.inc @@ -1 +1 @@ -2013-08-12.403 +2013-08-13.404 diff --git a/view/tpl/menulist.tpl b/view/tpl/menulist.tpl new file mode 100644 index 000000000..3ad92cb7e --- /dev/null +++ b/view/tpl/menulist.tpl @@ -0,0 +1,16 @@ +<h1>{{$title}}</h1> + +<a href="menu/new" title="{{$hintnew}}">{{$hintnew}}</a> + +<br /> + +{{if $menus }} +<ul id="menulist"> +{{foreach $menus as $m }} +<li>{{$m.menu_name}} <a href="menu/{{$m.menu_id}}" title="{{$hintedit}}">{{$edit}}</a>|<a href="menu/{{$m.menu.id}}/drop" title={{$hintdrop}}>{{$drop}}</a></li> +{{/foreach}} +</ul> +{{/if}} + + + |