aboutsummaryrefslogtreecommitdiff
path: root/mod/groups/views/default/groups/grouplisting.php
blob: 1466234abc8b5e5e89fe348023cfb92b24d0a638 (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
34
35
36
37
38
39
40
41
42
43
44
45
<?php
/**
 * Elgg user display (small)
 *
 * @package ElggGroups
 *
 * @uses $vars['entity'] The user entity
 */

$icon = elgg_view(
		"groups/icon", array(
		'entity' => $vars['entity'],
		'size' => 'tiny',
));

//get the membership type
$membership = $vars['entity']->membership;
if($membership == ACCESS_PUBLIC) {
	$mem = elgg_echo("groups:open");
} else {
	$mem = elgg_echo("groups:closed");
}

$info .= "<p class='entity_subtext groups'>" . $mem . " / <b>" . get_group_members($vars['entity']->guid, 10, 0, 0, true) ."</b> " . elgg_echo("groups:member");

//for admins only - display the feature or unfeature option
if(isadminloggedin()) {
	if($vars['entity']->featured_group == "yes"){
		$url = elgg_add_action_tokens_to_url(elgg_get_site_url() . "action/groups/featured?group_guid=" . $vars['entity']->guid . "&action_type=unfeature");
		$wording = elgg_echo("groups:makeunfeatured");
	}else{
		$url = elgg_add_action_tokens_to_url(elgg_get_site_url() . "action/groups/featured?group_guid=" . $vars['entity']->guid . "&action_type=feature");
		$wording = elgg_echo("groups:makefeatured");
	}
	// display 'make featured' option
	$info .= "<br /><a href=\"{$url}\">{$wording}</a>";
}

$info .= "</p>";
$info .= "<p class='entity_title'><a href=\"" . $vars['entity']->getUrl() . "\">" . $vars['entity']->name . "</a></p>";
$info .= "<p class='entity_subtext'>" . $vars['entity']->briefdescription . "</p>";

echo elgg_view_listing($icon, $info);

?>