aboutsummaryrefslogtreecommitdiff
path: root/mod/profile/views/default/user/user.php
blob: 2c64ac0df777398d923bb3961d1772c624f1d039 (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
79
80
81
<?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
	 */

?>

	<h2><a href="<?php echo $vars['entity']->getUrl(); ?>"><?php echo $vars['entity']->name; ?></a></h2>
	<p>
		*** USER ICON TO COME ***
	</p>
	<?php 

		if ($vars['full'] == true) {
	
	?>
	<p><b><?php echo elgg_echo("profile:aboutme"); ?></b></p>
	<p><?php echo nl2br($vars['entity']->description); ?></p>
	<?php

		}
	
	?>
	<p>
		<b><?php
		
			echo elgg_echo("profile:location");
		
		?>: </b>
		<?php

			echo elgg_view('output/tags',array('tags' => $vars['entity']->location));
		
		?>
	</p>
	<p>
		<b><?php
		
			echo elgg_echo("profile:skills");
		
		?>: </b>
		<?php

			echo elgg_view('output/tags',array('tags' => $vars['entity']->skills));
		
		?>
	</p>
	<p>
		<b><?php
		
			echo elgg_echo("profile:interests");
		
		?>: </b>
		<?php

			echo elgg_view('output/tags',array('tags' => $vars['entity']->interests));
		
		?>
	</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

		}
	
	?>