aboutsummaryrefslogtreecommitdiff
path: root/mod/externalpages/views/default/expages/analytics.php
blob: 40f7b6a8d88b5c2529b4dff982eeea1f29ef043f (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
<?php

	/**
	 * Elgg Analytics view
	 * 
	 * @package ElggExpages
	 * 
	 */

	 
	 //get analytics content 
		$contents = elgg_get_entities(array('type' => 'object', 'subtype' => 'analytics', 'limit' => 1));
		
		if($contents){
			foreach($contents as $c){
				echo $c->description;
			}
		}

?>