blob: 7f28705c7b4446c9b78e0454a0c2fa4bb6486e3c (
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>';
}
?>
|