diff options
author | Cash Costello <cash.costello@gmail.com> | 2012-07-14 14:46:00 -0400 |
---|---|---|
committer | Cash Costello <cash.costello@gmail.com> | 2012-07-14 14:46:00 -0400 |
commit | 3639cba1b20c4227def597e67274a184d1ea87d7 (patch) | |
tree | ddf11578c485d9a26735694a3ba482f6892ed70d /views/default/tidypics/gallery.php | |
parent | 0eec78495e5f63a80c2b04fcb87bda1ccb2b6648 (diff) | |
download | elgg-3639cba1b20c4227def597e67274a184d1ea87d7.tar.gz elgg-3639cba1b20c4227def597e67274a184d1ea87d7.tar.bz2 |
removed old code
Diffstat (limited to 'views/default/tidypics/gallery.php')
-rw-r--r-- | views/default/tidypics/gallery.php | 71 |
1 files changed, 0 insertions, 71 deletions
diff --git a/views/default/tidypics/gallery.php b/views/default/tidypics/gallery.php deleted file mode 100644 index ba6f7b11d..000000000 --- a/views/default/tidypics/gallery.php +++ /dev/null @@ -1,71 +0,0 @@ -<?php -/** - * view a gallery of photos or albums - * - */ - -if ($vars['context'] == 'widget') { - $num_wide = 3; -} else { - // four albums across - $num_wide = 4; -} - -$context = $vars['context']; -$offset = $vars['offset']; -$entities = $vars['entities']; -$limit = $vars['limit']; -$count = $vars['count']; -$baseurl = $vars['baseurl']; -$context = $vars['context']; -$viewtype = $vars['viewtype']; -$pagination = $vars['pagination']; -$fullview = $vars['fullview']; - -$html = ""; -$nav = ""; - -if (isset($vars['viewtypetoggle'])) { - $viewtypetoggle = $vars['viewtypetoggle']; -} else { - $viewtypetoggle = true; -} - -if ($context == "search" && $count > 0 && $viewtypetoggle) { - $nav .= elgg_view('navigation/viewtype', array( - 'baseurl' => $baseurl, - 'offset' => $offset, - 'count' => $count, - 'viewtype' => $viewtype, - )); -} - -if ($pagination) { - $nav .= elgg_view('navigation/pagination',array( - 'baseurl' => $baseurl, - 'offset' => $offset, - 'count' => $count, - 'limit' => $limit, - )); -} - -$html .= $nav; - -if (is_array($entities) && sizeof($entities) > 0) { - $counter = 0; - foreach($entities as $entity) { - if ($counter % $num_wide == 0) { - $html .= "<div class=\"tidypics_line_break\"></div>"; - } - $html .= elgg_view_entity($entity, $fullview); - $counter++; - } -} - -$html .= '<div class="clearfloat"></div>'; - -if ($count) { - $html .= $nav; -} - -echo $html;
\ No newline at end of file |