aboutsummaryrefslogtreecommitdiff
path: root/mod/profile/views/default/profile/listing.php
blob: 94a29580cd57bdfa5c0fedf7204a83ac30b1baf3 (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
<?php

	/**
	 * Elgg user display (small)
	 * 
	 * @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
	 */

?>

	<div class="profile_listing">
	
		<div class="profile_listing_icon">
			<?php

				echo elgg_view(
						"profile/icon", array(
												'entity' => $vars['entity'],
												'size' => 'small',
											  )
					);
			
			?>
		</div>
		<div class="profile_listing_info">
			<p><b><?php

				echo "<a href=\"" . $vars['entity']->getUrl() . "\">" . $vars['entity']->name . "</a>";
			
			?></b></p>
			<?php

				$location = $vars['entity']->location;
				if (!empty($location)) {
					echo "<p>" . elgg_echo("profile:location") . ": " . elgg_view("output/tags",array('value' => $vars['entity']->location)) . "</p>";
				}
			
			?>
		</div>		
	
	</div>