aboutsummaryrefslogtreecommitdiff
path: root/views/rss/tidypics/gallery.php
diff options
context:
space:
mode:
Diffstat (limited to 'views/rss/tidypics/gallery.php')
-rw-r--r--views/rss/tidypics/gallery.php18
1 files changed, 18 insertions, 0 deletions
diff --git a/views/rss/tidypics/gallery.php b/views/rss/tidypics/gallery.php
new file mode 100644
index 000000000..2fcf2ac76
--- /dev/null
+++ b/views/rss/tidypics/gallery.php
@@ -0,0 +1,18 @@
+<?php
+ /**
+ * Tidypics Listing RSS View
+ */
+
+$context = $vars['context'];
+$entities = $vars['entities'];
+$count = $vars['count'];
+$baseurl = $vars['baseurl'];
+
+
+if (is_array($entities) && sizeof($entities) > 0) {
+ foreach($entities as $entity) {
+ echo elgg_view_entity($entity);
+ }
+}
+
+?> \ No newline at end of file