blob: 102932233b1c602598f21aa4b2d748f9a3a455cc (
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
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
|
<?php
/**
* Elgg user display
*
* @package ElggProfile
* @license http://www.gnu.org/licenses/old-licenses/gpl-2.0.html GNU Public License version 2
* @author Ben Werdmuller <ben@curverider.co.uk>
* @copyright Curverider Ltd 2008
* @link http://elgg.com/
*
* @uses $vars['entity'] The user entity
*/
if ($vars['full'] == true) {
$iconsize = "large";
} else {
$iconsize = "medium";
}
echo elgg_view(
"profile/icon", array(
'entity' => $vars['entity'],
'align' => "right",
'size' => $iconsize,
)
);
?>
<h2><a href="<?php echo $vars['entity']->getUrl(); ?>"><?php echo $vars['entity']->name; ?></a></h2>
<?php
if ($vars['full'] == true) {
?>
<p><b><?php echo elgg_echo("profile:aboutme"); ?></b></p>
<p><?php echo nl2br($vars['entity']->description); ?></p>
<?php
if (is_array($vars['config']->profile) && sizeof($vars['config']->profile) > 0)
foreach($vars['config']->profile as $shortname => $valtype) {
if ($shortname != "description") {
$value = $vars['entity']->$shortname;
if (!empty($value)) {
?>
<p>
<b><?php
echo elgg_echo("profile:{$shortname}");
?>: </b>
<?php
echo elgg_view("output/{$valtype}",array('value' => $vars['entity']->$shortname));
?>
</p>
<?php
}
}
}
}
if ($vars['entity']->canEdit()) {
?>
<p>
<a href="<?php echo $vars['url']; ?>mod/profile/edit.php"><?php echo elgg_echo("edit"); ?></a>
</p>
<?php
}
?>
|