aboutsummaryrefslogtreecommitdiff
path: root/dashboard/latest.php
blob: add01f209663a30a73d2ca4a2ec3839a20241e9f (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
<?php

	/**
	 * Elgg latest content page
	 * 
	 * @package Elgg
	 * @subpackage Core
	 * @license http://www.gnu.org/licenses/old-licenses/gpl-2.0.html GNU Public License version 2
	 * @author Curverider Ltd
	 * @copyright Curverider Ltd 2008-2009
	 * @link http://elgg.org/
	 */

	/**
	 * Start the Elgg engine
	 */
		require_once(dirname(dirname(__FILE__)) . "/engine/start.php");
		
		
	// Load the front page
        global $CONFIG;
        $title = elgg_view_title(elgg_echo('content:latest'));
        set_context('search');
        $content = list_registered_entities(0,10,true,false,array('object','group'));
        set_context('latest');
        $content = elgg_view_layout('two_column_left_sidebar', '', $title . $content);
        echo page_draw(elgg_echo('content:latest'), $content);
		

?>