blob: d5abe1e09240f1cef5d3c07ee0def7073388a77b (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
|
<?php
/**
* Elgg groups plugin full profile view (for a closed group you haven't joined).
*
* @package ElggGroups
*/
?>
<p class="margin-top">
<?php
echo elgg_echo('groups:closedgroup');
if (isloggedin()) {
echo ' ' . elgg_echo('groups:closedgroup:request');
}
?>
</p>
|