blob: 0dafe78ad6d25e685bc5fced86e76a9d54328c69 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
|
<?php
/**
* Group profile RSS view
*
* Displays a list of the latest content in the group
*
* @uses $vars['entity'] ElggGroup object
*/
$entities = elgg_get_config('registered_entities');
if (!empty($entities['object'])) {
echo elgg_list_entities(array(
'type' => 'object',
'subtypes' => $entities['object'],
'container_guid' => $vars['entity']->getGUID(),
));
}
|