From fb837b86c5ab46f92fba37db0d37d49071d71a74 Mon Sep 17 00:00:00 2001 From: Evan Prodromou Date: Thu, 11 Dec 2008 13:06:22 -0500 Subject: add a menu to subs darcs-hash:20081211180622-5ed1f-ab61ae0e19506b9686cd560ff262d29a6d0ac267.gz --- lib/gallery.php | 19 +++++++++++++++++++ 1 file changed, 19 insertions(+) (limited to 'lib/gallery.php') diff --git a/lib/gallery.php b/lib/gallery.php index bd77b587c..152664d42 100644 --- a/lib/gallery.php +++ b/lib/gallery.php @@ -119,6 +119,25 @@ class GalleryAction extends Action { function show_top($profile) { common_element('div', 'instructions', $this->get_instructions($profile)); + $this->show_menu(); + } + + function show_menu() { + # action => array('prompt', 'title', $args) + $action = $this->trimmed('action'); + $nickname = $this->trimmed('nickname'); + $menu = + array('subscriptions' => + array( + _('Subscribers'), + _('Subscribers'), + array('nickname' => $nickname)), + 'subscribers' => + array( _('Subscriptions'), + _('Subscriptions'), + array('nickname' => $nickname)), + ); + $this->nav_menu($menu); } function show_gallery($profile, $page, $display='list', $tag=NULL) { -- cgit v1.2.3-54-g00ecf