blob: ea6431037abdda6db3d1fdca02040acd11aa536e (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
|
<?php
/**
* Elgg groups plugin
*/
?>
<div id="content_header" class="clearfloat">
<div class="content_header_title">
<h2><?php echo elgg_echo("groups:forum"); ?></h2>
</div>
<?php // only show the add topic button if the user is a member
if(elgg_get_page_owner()->isMember(get_loggedin_user())) {
?>
<div class="content_header_options">
<a class="action_button" href="<?php echo elgg_get_site_url(); ?>mod/groups/addtopic.php?group_guid=<?php echo $vars['group_guid']; ?>"><?php echo elgg_echo("groups:addtopic"); ?></a>
</div>
<?php
}
?>
</div>
<?php
if($vars['topics'])
echo $vars['topics'];
else
echo "<p class='margin_top'>". elgg_echo("grouptopic:notcreated") . "</p>";
|