blob: 3eeb9eaf2f41a338d52c9cadb250cb4c22b72378 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
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(),
));
|