aboutsummaryrefslogtreecommitdiff
path: root/views/default/entities/gallery.php
diff options
context:
space:
mode:
authorcash <cash@36083f99-b078-4883-b0ff-0f9b5a30f544>2011-02-06 22:46:47 +0000
committercash <cash@36083f99-b078-4883-b0ff-0f9b5a30f544>2011-02-06 22:46:47 +0000
commit7be26eab54af016c2f64b2316141d40955c6c2f6 (patch)
tree876bef678df3c0893859b7f402660074a57d3f57 /views/default/entities/gallery.php
parent90a5804aca9fb7730ac026f4362753013f3df249 (diff)
downloadelgg-7be26eab54af016c2f64b2316141d40955c6c2f6.tar.gz
elgg-7be26eab54af016c2f64b2316141d40955c6c2f6.tar.bz2
removing old entities views that are no longer needed and did the last changes for the icon system
git-svn-id: http://code.elgg.org/elgg/trunk@8054 36083f99-b078-4883-b0ff-0f9b5a30f544
Diffstat (limited to 'views/default/entities/gallery.php')
-rw-r--r--views/default/entities/gallery.php42
1 files changed, 0 insertions, 42 deletions
diff --git a/views/default/entities/gallery.php b/views/default/entities/gallery.php
deleted file mode 100644
index bfdd4d4d8..000000000
--- a/views/default/entities/gallery.php
+++ /dev/null
@@ -1,42 +0,0 @@
-<?php
-/**
- * Elgg gallery view
- *
- * @package Elgg
- * @subpackage Core
- */
-
-$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_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