aboutsummaryrefslogtreecommitdiff
path: root/mod/file/upload.php
blob: ef0899f20595af113635adc07a377610faeddbca (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
<?php
/**
 * Upload a new file
 *
 * @package ElggFile
 */

elgg_set_page_owner_guid(get_input('guid'));
$owner = elgg_get_page_owner();

gatekeeper();
group_gatekeeper();

elgg_push_breadcrumb(elgg_echo('file'), "pg/file/all/");
if (elgg_instanceof($owner, 'user')) {
	elgg_push_breadcrumb($owner->name, "pg/file/owner/$owner->username");
} else {
	elgg_push_breadcrumb($owner->name, "pg/file/group/$owner->guid/owner");
}
elgg_push_breadcrumb(elgg_echo('file:new'));

$container_guid = elgg_get_page_owner_guid();

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

$content = elgg_view_title($title);

$content .= elgg_view("file/upload", array('container_guid' => $container_guid));
$body = elgg_view_layout('content', array(
	'content' => $content,
	'title' => $title,
	'filter' => '',
	'header' => '',
));

echo elgg_view_page($title, $body);