blob: a7e143ae927b068bb318af55ad07498f93cced6c (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
|
<?php
/***********************************************
*
* This is used on the group profile page
*
***********************************************/
if ($vars['entity']->photos_enable != 'no') {
echo '<div id="tidypics_group_profile">';
echo '<h2>' . elgg_echo('album:group') . '</h2>';
echo elgg_view('tidypics/albums', array('num_albums' => 5));
echo '</div>';
}
?>
|