From d66faaf360f2f629fa96dd5e04ff0c6e38eb8213 Mon Sep 17 00:00:00 2001 From: Cash Costello Date: Sat, 28 Mar 2009 13:03:15 +0000 Subject: changing name of edit action since it works for both images and albums --- actions/edit.php | 85 +++++++++++++++++++++++++++++++++++++++++++++++++++ actions/editalbum.php | 85 --------------------------------------------------- 2 files changed, 85 insertions(+), 85 deletions(-) create mode 100644 actions/edit.php delete mode 100644 actions/editalbum.php (limited to 'actions') diff --git a/actions/edit.php b/actions/edit.php new file mode 100644 index 000000000..78b1f1653 --- /dev/null +++ b/actions/edit.php @@ -0,0 +1,85 @@ +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()); + + } +?> \ No newline at end of file diff --git a/actions/editalbum.php b/actions/editalbum.php deleted file mode 100644 index 78b1f1653..000000000 --- a/actions/editalbum.php +++ /dev/null @@ -1,85 +0,0 @@ -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()); - - } -?> \ No newline at end of file -- cgit v1.2.3