aboutsummaryrefslogtreecommitdiff
path: root/mod/profile/views/default/profile/profile_contents/activity.php
blob: 6cb2c3a7ecfb0488af1859480693400a35c91d3c (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
<?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>