diff options
Diffstat (limited to 'views/rss/object/album/full.php')
-rw-r--r-- | views/rss/object/album/full.php | 16 |
1 files changed, 16 insertions, 0 deletions
diff --git a/views/rss/object/album/full.php b/views/rss/object/album/full.php new file mode 100644 index 000000000..8261e5ce0 --- /dev/null +++ b/views/rss/object/album/full.php @@ -0,0 +1,16 @@ +<?php +/** + * List photos in an album for RSS + * + * @uses $vars['entity'] TidypicsAlbum + */ + +$limit = (int)get_input('limit', 20); + +echo elgg_list_entities(array( + 'type' => 'object', + 'subtype' => 'image', + 'container_guid' => $vars['entity']->getGUID(), + 'limit' => $limit, + 'full_view' => false, +)); |