blob: 7ac4930b51253627704d6e96ef1c167089cc8e3a (
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
42
43
44
45
46
47
48
49
50
51
52
53
|
<?php
/**
* Tidypics Upload Images Page
*
*/
include_once dirname(dirname(dirname(dirname(__FILE__)))) . "/engine/start.php";
// must be logged in to upload images
gatekeeper();
$album_guid = (int) get_input('album_guid');
if (!$album_guid) {
forward();
}
if (get_plugin_setting('uploader', 'tidypics') != "disabled") {
$uploader = get_input('uploader', 'ajax');
} else {
$uploader = 'basic';
}
$album = get_entity($album_guid);
//if album does not exist or user does not have access
if (!$album || !$album->canEdit()) {
// throw warning and forward to previous page
forward($_SERVER['HTTP_REFERER']);
}
// set page owner based on container (user or group)
set_page_owner($album->container_guid);
$page_owner = page_owner_entity();
if ($page_owner instanceof ElggGroup) {
add_submenu_item( sprintf(elgg_echo('album:group'),$page_owner->name),
$CONFIG->wwwroot . "pg/photos/owned/" . $page_owner->username);
}
set_context('photos');
$title = elgg_echo('album:addpix') . ': ' . $album->title;
$area2 .= elgg_view_title($title);
if ($uploader == 'basic') {
$area2 .= elgg_view("tidypics/forms/upload", array('album' => $album));
} else {
$area2 .= elgg_view("tidypics/forms/ajax_upload", array('album' => $album));
}
$body = elgg_view_layout('two_column_left_sidebar', '', $area2);
page_draw($title, $body);
|