From cbed94166717913f2ba8399b16e3f685d0e31c5c Mon Sep 17 00:00:00 2001 From: Evan Prodromou Date: Thu, 20 Nov 2008 09:29:14 -0500 Subject: [PATCH] links to different display options for subscriptions darcs-hash:20081120142914-84dde-293e068ab92d9174bc270c35700809a1be9f19e1.gz --- lib/gallery.php | 28 ++++++++++++++++++++++++++++ 1 file changed, 28 insertions(+) diff --git a/lib/gallery.php b/lib/gallery.php index f9d0b31fa5..88e5c61f51 100644 --- a/lib/gallery.php +++ b/lib/gallery.php @@ -65,6 +65,9 @@ class GalleryAction extends Action { common_show_header($profile->nickname . ": " . $this->gallery_type(), NULL, $profile, array($this, 'show_top')); + + $this->display_links($page, $display); + $this->show_gallery($profile, $page, $display); common_show_footer(); } @@ -186,4 +189,29 @@ class GalleryAction extends Action { function div_class() { return ''; } + + function display_links($page, $display) { + + common_element_start('p'); + + switch ($display) { + case 'list': + common_element('span', NULL, _('List')); + common_text(' | '); + common_element('a', array('href' => common_local_url($this->trimmed('action'), + array('display' => 'icons', + 'page' => floor(($page * AVATARS_PER_PAGE) / PROFILES_PER_PAGE)))), + _('Icons')); + break; + default: + common_element('a', array('href' => common_local_url($this->trimmed('action'), + array('page' => floor(($page * PROFILES_PER_PAGE) / AVATARS_PER_PAGE)))), + _('List')); + common_text(' | '); + common_element('span', NULL, _('Icons')); + break; + } + + common_element_end('p'); + } } \ No newline at end of file