aboutsummaryrefslogtreecommitdiff
path: root/mod/profile/views/default/profile/profile_contents/activity.php
blob: 62fc747e3a805794125351821f88ec4983486621 (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
<?php
/**
 * Elgg user display (details)
 * @uses $vars['entity'] The user entity
 */
?>	
<div id="profile_content">
	<?php
	if(is_plugin_enabled('thewire')) {
		// users last status msg, if they posted one
		echo elgg_view("profile/status", array("entity" => $vars['entity']));
	}
	if(is_plugin_enabled('riverdashboard')) {
		// users last 10 activites
		echo elgg_view('profile/profile_contents/profile_activity', array('entity' => $vars['entity']));
	} else {
		echo "Riverdashboard not loaded";
	}
	?>
</div>

<div id="profile_sidebar">
<?php
	echo elgg_view('profile/profile_ownerblock', array('smallicon' => true));
?>
</div>