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; } } ?>