aboutsummaryrefslogtreecommitdiff
path: root/views/rss/object/album/full.php
blob: 8261e5ce05d5808f63c781a5637570b7687f4826 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
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,
));