aboutsummaryrefslogtreecommitdiff
path: root/mod/groups/views/rss/groups/profile
diff options
context:
space:
mode:
authorCash Costello <cash.costello@gmail.com>2011-11-04 07:01:21 -0400
committerCash Costello <cash.costello@gmail.com>2011-11-04 07:01:21 -0400
commit7787debf3e536497952256df147ea84e520390e3 (patch)
tree83418d09f54ecd3101f796e1efc721a3021934c9 /mod/groups/views/rss/groups/profile
parent5d480f2d8a767c682878071c3c8f7f6b45770c14 (diff)
downloadelgg-7787debf3e536497952256df147ea84e520390e3.tar.gz
elgg-7787debf3e536497952256df147ea84e520390e3.tar.bz2
Fixes #4027 updated groups RSS feeds for 1.8
Diffstat (limited to 'mod/groups/views/rss/groups/profile')
-rw-r--r--mod/groups/views/rss/groups/profile/layout.php13
1 files changed, 13 insertions, 0 deletions
diff --git a/mod/groups/views/rss/groups/profile/layout.php b/mod/groups/views/rss/groups/profile/layout.php
new file mode 100644
index 000000000..3eeb9eaf2
--- /dev/null
+++ b/mod/groups/views/rss/groups/profile/layout.php
@@ -0,0 +1,13 @@
+<?php
+/**
+ * Group profile RSS view
+ *
+ * Displays a list of the latest content in the group
+ *
+ * @uses $vars['entity'] ElggGroup object
+ */
+
+echo elgg_list_entities(array(
+ 'type' => 'object',
+ 'container_guid' => $vars['entity']->getGUID(),
+));