blob: 78b1f16538d7f50932815f9ecb821832a171a0b2 (
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
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
|
<?php
/**
* Tidypics edit album action
*
*/
// Make sure we're logged in (send us to the front page if not)
if (!isloggedin()) forward();
// Get input data
$guid = (int) get_input('albumpost');
$title = get_input('albumtitle');
$body = get_input('albumbody');
$access = get_input('access_id');
$tags = get_input('albumtags');
$back_url = 'mod/tidypics/edit.php?file_guid=' . $guid;
// Make sure we actually have permission to edit
$album = get_entity($guid);
if ($album->canEdit())
{
// Cache to the session
$_SESSION['albumtitle'] = $title;
$_SESSION['albumbody'] = $body;
$_SESSION['albumtags'] = $tags;
// Convert string of tags into a preformatted array
$tagarray = string_to_tag_array($tags);
// Get owning user
$owner = get_entity($album->getOwner());
// edit access only if access is different from current
if ($album->access_id != $access)
{
$album->access_id = $access;
//get images from album and update access on image entities
$images = get_entities("object","image", $guid, '', 999, '', false);
foreach ($images as $im) {
$im->access_id = $access;
$im->save();
//new core updates all metadata access as well!
}
}
// Set its title and description appropriately
$album->title = $title;
$album->description = $body;
// Before we can set metadata, we need to save the image
if (!$album->save()) {
register_error(elgg_echo("album:error"));
$album->delete();
forward(get_input('forward_url', $_SERVER['HTTP_REFERER'])); //failed, so forward to previous page
}
// Now let's add tags. We can pass an array directly to the object property! Easy.
$album->clearMetadata('tags');
if (is_array($tagarray)) {
$album->tags = $tagarray;
}
//if cover meta is sent from image save as metadata
if (get_input('cover') == elgg_echo('album:cover:yes')) {
$container = get_entity($album->container_guid);
$container->cover = $album->guid;
}
// Success message
system_message(elgg_echo("album:edited"));
// Remove the image cache
unset($_SESSION['albumtitle']);
unset($_SESSION['albumbody']);
unset($_SESSION['albumtags']);
// Forward to the main blog page
forward($album->getURL());
}
?>
|