blob: a7535b256c397c4170562128938edbbf2b6b29d8 (
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
46
47
48
|
<?php
/**
* Elgg group icon
*
* @package ElggGroups
* @license http://www.gnu.org/licenses/old-licenses/gpl-2.0.html GNU Public License version 2
* @author Curverider Ltd
* @copyright Curverider Ltd 2008
* @link http://elgg.com/
*
* @uses $vars['entity'] The user entity. If none specified, the current user is assumed.
* @uses $vars['size'] The size - small, medium or large. If none specified, medium is assumed.
*/
$group = $vars['entity'];
if ($group instanceof ElggGroup) {
// Get size
if (!in_array($vars['size'],array('small','medium','large','tiny','master','topbar')))
$vars['size'] = "medium";
// Get any align and js
if (!empty($vars['align'])) {
$align = " align=\"{$vars['align']}\" ";
} else {
$align = "";
}
if ($icontime = $vars['entity']->icontime) {
$icontime = "{$icontime}";
} else {
$icontime = "default";
}
?>
<div class="groupicon">
<a href="<?php echo $vars['entity']->getURL(); ?>" class="icon" ><img src="<?php echo $vars['url']; ?>mod/groups/graphics/icon.php?group_guid=<?php echo $group->getGUID(); ?>&size=<?php echo $vars['size']; ?>" border="0" <?php echo $align; ?> title="<?php echo $name; ?>" <?php echo $vars['js']; ?> /></a>
</div>
<?php
}
?>
|