aboutsummaryrefslogtreecommitdiff
path: root/mod/file/edit.php
blob: 6c7dbd0924a4343d0db73c80165fd7b56353cb72 (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
<?php
/**
 * Elgg file saver
 *
 * @package ElggFile
 */

require_once(dirname(dirname(dirname(__FILE__))) . "/engine/start.php");

gatekeeper();

// Render the file upload page

$file_guid = (int) get_input('file_guid');
$file = get_entity($file_guid);
if (!$file) {
	forward();
}

// Set the page owner
$page_owner = page_owner_entity();
if (!$page_owner) {
	$container_guid = $file->container_guid;
	if ($container_guid) {
		set_page_owner($container_guid);
	}
}

if (!$file->canEdit()) {
	forward();
}

$title = elgg_echo('file:edit');
$area1 = elgg_view_title($title);
$area1 .= elgg_view("file/upload", array('entity' => $file));

$body = elgg_view_layout('one_column_with_sidebar', $area1);
page_draw($title, $body);