blob: abf1a0fdd5b3300967370830dc1f76b078ec270e (
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
|
<?php
/**
* Tidypics Edit for Albums and Single Photos
*
*/
include_once dirname(dirname(dirname(dirname(__FILE__)))) . "/engine/start.php";
// make sure the user is logged_in
gatekeeper();
set_context('photos');
$guid = (int) get_input('guid');
if (!$entity = get_entity($guid))
forward();
if (!$entity->canEdit())
forward();
$subtype = $entity->getSubtype();
if ($subtype == 'album') {
$title = elgg_echo('album:edit');
if ($container = $entity->container_guid)
set_page_owner($container);
} else if ($subtype == 'image') {
$title = elgg_echo('image:edit');
if ($container = get_entity($entity->container_guid)->container_guid)
set_page_owner($container);
} else {
forward();
}
$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);
}
$area2 .= elgg_view_title($title);
$area2 .= elgg_view('tidypics/forms/edit', array('entity' => $entity, 'subtype' => $subtype));
$body = elgg_view_layout('two_column_left_sidebar', $area1, $area2);
page_draw($title, $body);
?>
|