blob: 821e398e145d9b6f68f0066ece880e054cfa7715 (
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
26
27
28
29
30
31
32
33
|
<?php
/**
* Elgg groups plugin
*
* @package ElggGroups
* @license http://www.gnu.org/licenses/old-licenses/gpl-2.0.html GNU Public License version 2
* @author Curverider
* @copyright Curverider Ltd 2008-2010
* @link http://elgg.com/
*/
?>
<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(page_owner_entity()->isMember($vars['user'])) {
?>
<div class="content_header_options">
<a class="action_button" href="<?php echo $vars['url']; ?>mod/groups/addtopic.php?group_guid=<?php echo get_input('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>";
?>
|