summaryrefslogtreecommitdiff
path: root/modules
diff options
context:
space:
mode:
authorChad Kieffer <chad@2tbsp.com>2008-12-13 23:02:16 +0000
committerChad Kieffer <chad@2tbsp.com>2008-12-13 23:02:16 +0000
commit92102c891c36045142fea5c2293f310752a57166 (patch)
tree1a3b8bbe8df2fdda1889133649d142318e5873d2 /modules
parentaf8c74f6125478450072fd105d54172dcba1bf8e (diff)
Layout cleanup and simplification. Move view-mode buttons into sidebar, search to header_top. Reduced borders. Started album grid improvements. Minor white space improvements. Still need to handle text/photo alignment in album grid, improve placement of search.
Diffstat (limited to 'modules')
-rw-r--r--modules/search/helpers/search_block.php2
-rw-r--r--modules/slideshow/helpers/slideshow_block.php10
2 files changed, 2 insertions, 10 deletions
diff --git a/modules/search/helpers/search_block.php b/modules/search/helpers/search_block.php
index b6450b4d..0294c920 100644
--- a/modules/search/helpers/search_block.php
+++ b/modules/search/helpers/search_block.php
@@ -18,7 +18,7 @@
* Foundation, Inc., 51 Franklin Street - Fifth Floor, Boston, MA 02110-1301, USA.
*/
class search_block_Core {
- public static function header_bottom($theme) {
+ public static function header_top($theme) {
$view = new View("search_link.html");
return $view->render();
}
diff --git a/modules/slideshow/helpers/slideshow_block.php b/modules/slideshow/helpers/slideshow_block.php
index c757a28a..b5177b8e 100644
--- a/modules/slideshow/helpers/slideshow_block.php
+++ b/modules/slideshow/helpers/slideshow_block.php
@@ -28,15 +28,7 @@ class slideshow_block_Core {
" title=\"" . _("View slideshow") . "\">" . _("View slideshow") . "</a>";
}
- public static function album_top($theme) {
+ public static function sidebar_top($theme) {
return self::_piclens_link($theme);
}
-
- public static function photo_top($theme) {
- return self::_piclens_link($theme);
- }
-
- public static function tag_top($theme) {
- return self::_piclens_link();
- }
}