blob: 9dfc12eeabe4f616bdb001d7e971a021f010ae3a (
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
41
 | <?php
/**
 * Elgg file saver
 *
 * @package ElggFile
 * @author Curverider Ltd
 * @copyright Curverider Ltd 2008-2010
 * @link http://elgg.com/
 */
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');
$area2 = elgg_view_title($title);
$area2 .= elgg_view("file/upload", array('entity' => $file));
$body = elgg_view_layout('two_column_left_sidebar', '', $area2);
page_draw($title, $body);
 |