diff options
author | brettp <brettp@36083f99-b078-4883-b0ff-0f9b5a30f544> | 2009-10-22 18:20:10 +0000 |
---|---|---|
committer | brettp <brettp@36083f99-b078-4883-b0ff-0f9b5a30f544> | 2009-10-22 18:20:10 +0000 |
commit | b36bf0e97e8dfbf2dcd07d4173392a3dcfbc2df0 (patch) | |
tree | eadba4e265c097359389b866919201858c5ffdd5 /views/default/entities/gallery.php | |
parent | cb01252489f233535e2057457cfe90920f82f96d (diff) | |
download | elgg-b36bf0e97e8dfbf2dcd07d4173392a3dcfbc2df0.tar.gz elgg-b36bf0e97e8dfbf2dcd07d4173392a3dcfbc2df0.tar.bz2 |
Pulling in MITRE's search core. Fo'rizzle this time. Yo.
git-svn-id: http://code.elgg.org/elgg/trunk@3572 36083f99-b078-4883-b0ff-0f9b5a30f544
Diffstat (limited to 'views/default/entities/gallery.php')
-rw-r--r-- | views/default/entities/gallery.php | 44 |
1 files changed, 44 insertions, 0 deletions
diff --git a/views/default/entities/gallery.php b/views/default/entities/gallery.php new file mode 100644 index 000000000..a2701ed0c --- /dev/null +++ b/views/default/entities/gallery.php @@ -0,0 +1,44 @@ +<?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_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 |