Skip to content
Snippets Groups Projects
Commit 7ce36536 authored by Seth Meranda's avatar Seth Meranda
Browse files

hide the active tab until we get some more activity.

parent 53389c7e
No related branches found
No related tags found
No related merge requests found
<?php
/**
* A simple view to provide the user with group filters and the number of group on the site
**/
$members = $vars['count'];
if(!$num_groups)
$num_groups = 0;
$filter = $vars['filter'];
//url
$url = $vars['url'] . "mod/members/index.php";
?>
<div id="elgg_horizontal_tabbed_nav">
<ul>
<li <?php if($filter == "newest") echo "class='selected'"; ?>><a href="<?php echo $url; ?>?filter=newest"><?php echo elgg_echo('members:label:newest'); ?></a></li>
<li <?php if($filter == "pop") echo "class='selected'"; ?>><a href="<?php echo $url; ?>?filter=pop"><?php echo elgg_echo('members:label:popular'); ?></a></li>
</ul>
</div>
<div class="group_count" style="display:none;">
<?php
echo $members . " " . elgg_echo("members:active");
?>
</div>
\ No newline at end of file
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment