aboutsummaryrefslogtreecommitdiff
path: root/actions/editalbum.php
diff options
context:
space:
mode:
authorCash Costello <cash.costello@gmail.com>2009-03-21 18:12:50 +0000
committerCash Costello <cash.costello@gmail.com>2009-03-21 18:12:50 +0000
commit7acd3a2947f7bd92ded5bc5f02baa5db87f6b212 (patch)
tree7c1a8394f0aa6b1f1b384b445702329c55db8818 /actions/editalbum.php
parent26be16aaf2189a4b50b06494aab6c6690480a371 (diff)
downloadelgg-7acd3a2947f7bd92ded5bc5f02baa5db87f6b212.tar.gz
elgg-7acd3a2947f7bd92ded5bc5f02baa5db87f6b212.tar.bz2
cleaned up actions - formatting
Diffstat (limited to 'actions/editalbum.php')
-rw-r--r--actions/editalbum.php108
1 files changed, 51 insertions, 57 deletions
diff --git a/actions/editalbum.php b/actions/editalbum.php
index 36b0f7379..78b1f1653 100644
--- a/actions/editalbum.php
+++ b/actions/editalbum.php
@@ -1,91 +1,85 @@
<?php
/**
- * Elgg album: edit album action
+ * Tidypics edit album action
*
- * @package ElggBlog
- * @license http://www.gnu.org/licenses/old-licenses/gpl-2.0.html GNU Public License version 2
- * @author Curverider Ltd <info@elgg.com>
- * @copyright Curverider Ltd 2008
- * @link http://elgg.org/
*/
// Make sure we're logged in (send us to the front page if not)
- if (!isloggedin()) forward();
+ 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;
+ $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())
- {
+ $album = get_entity($guid);
+ if ($album->canEdit())
+ {
- // Cache to the session
- $_SESSION['albumtitle'] = $title;
- $_SESSION['albumbody'] = $body;
- $_SESSION['albumtags'] = $tags;
+ // 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);
+ // Convert string of tags into a preformatted array
+ $tagarray = string_to_tag_array($tags);
- // Get owning user
- $owner = get_entity($album->getOwner());
+ // 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;
+ // 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!
- }
+ //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;
+ $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
- }
+ 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;
- }
+ $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;
- }
+ 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"));
+ system_message(elgg_echo("album:edited"));
// Remove the image cache
- unset($_SESSION['albumtitle']);
- unset($_SESSION['albumbody']);
- unset($_SESSION['albumtags']);
+ unset($_SESSION['albumtitle']);
+ unset($_SESSION['albumbody']);
+ unset($_SESSION['albumtags']);
// Forward to the main blog page
- forward($album->getURL());
+ forward($album->getURL());
- }
+ }
?> \ No newline at end of file