aboutsummaryrefslogtreecommitdiff
path: root/mod/file/pages/file/world.php
blob: 96c8de7850c5d11468014c1c7826e6ff30d5267a (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
<?php
/**
 * All files
 *
 * @package ElggFile
 */

elgg_push_breadcrumb(elgg_echo('file'));

elgg_register_title_button();

$title = elgg_echo('file:all');

$content = elgg_list_entities(array(
	'type' => 'object',
	'subtype' => 'file',
	'full_view' => FALSE
));
if (!$content) {
	$content = elgg_echo('file:none');
}

$sidebar = file_get_type_cloud();
$sidebar = elgg_view('file/sidebar');

$body = elgg_view_layout('content', array(
	'filter_context' => 'all',
	'content' => $content,
	'title' => $title,
	'sidebar' => $sidebar,
));

echo elgg_view_page($title, $body);