diff options
Diffstat (limited to 'views/default/event_calendar/entities/gallery.php')
-rw-r--r-- | views/default/event_calendar/entities/gallery.php | 44 |
1 files changed, 0 insertions, 44 deletions
diff --git a/views/default/event_calendar/entities/gallery.php b/views/default/event_calendar/entities/gallery.php deleted file mode 100644 index a12dfa84a..000000000 --- a/views/default/event_calendar/entities/gallery.php +++ /dev/null @@ -1,44 +0,0 @@ -<?php -/** - * Elgg gallery view - * - * @package Elgg - * @subpackage Core - * @author Curverider Ltd - * @link http://elgg.org/ - */ - -$entities = $vars['entities']; -if (is_array($entities) && sizeof($entities) > 0) { - -?> - -<table class="entity_gallery"> - -<?php - - $col = 0; - foreach($entities as $entity) { - if ($col == 0) { - - echo "<tr>"; - - } - echo "<td class=\"entity_gallery_item\">"; - echo elgg_view('event_calendar/entities/gallery_item',array('entity'=>$entity)); - echo "</td>"; - $col++; - if ($col > 3) { - echo "</tr>"; - $col = 0; - } - } - if ($col > 0) echo "</tr>"; - -?> - -</table> - -<?php - -}
\ No newline at end of file |