blob: 8b4c0fadf78f0ccc5dcc11095982cf409eb23558 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
|
<?php
/**
* Group profile summary
*
* Icon and profile fields
*
* @uses $vars['group']
*/
if (!isset($vars['entity']) || !$vars['entity']) {
echo elgg_echo('groups:notfound');
return true;
}
echo elgg_view_module('info', 'Info', elgg_view('groups/profile/fields', $vars));
echo elgg_view_module('info', 'Stats', elgg_view('groups/profile/stats', $vars));
|