aboutsummaryrefslogtreecommitdiff
path: root/mod/file/world.php
blob: 8b5e2cb0c42a9bd5e49c3a15b02973e5d862cfa9 (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
31
32
33
34
35
36
37
38
39
40
<?php
	/**
	 * Elgg file browser
	 * 
	 * @package ElggFile
	 * @author Curverider Ltd
	 * @copyright Curverider Ltd 2008-2010 - 2009
	 * @link http://elgg.com/
	 */

	require_once(dirname(dirname(dirname(__FILE__))) . "/engine/start.php");
	
	$limit = get_input("limit", 10);
	$offset = get_input("offset", 0);
	$tag = get_input("tag");
	
	// Get the current page's owner
		$page_owner = page_owner_entity();
		if ($page_owner === false || is_null($page_owner)) {
			$page_owner = $_SESSION['user'];
			set_page_owner($_SESSION['guid']);
		}
	
	$title = elgg_echo('file:all');
	
	// Get objects
	$area2 = elgg_view_title($title);
	$area1 = get_filetype_cloud(); // the filter
	set_context('search');
	if ($tag != "")
		$area2 .= list_entities_from_metadata('tags',$tag,'object','file',0,10,false);
	else
		$area2 .= elgg_list_entities(array('types' => 'object', 'subtypes' => 'file', 'limit' => 10, 'full_view' => FALSE));
	set_context('file');
		
	$body = elgg_view_layout('two_column_left_sidebar',$area1, $area2);

	// Finally draw the page
	page_draw($title, $body);
?>