aboutsummaryrefslogtreecommitdiff
path: root/edit_multi.php
blob: dd58759fe41d6894ba975810eeba69e6181a9e82 (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
<?php
	/**
	 * Tidypics: Edit the properties of multiple images 
	 * 
	 */

	include_once(dirname(dirname(dirname(__FILE__))) . "/engine/start.php");

	gatekeeper();
	set_context('photos');
	
	$page_owner = page_owner_entity();
	if ($page_owner === false || is_null($page_owner)) {
		$page_owner = $_SESSION['user'];
		set_page_owner($page_owner->getGUID());
	}
	
	$file_string = get_input('files');
	$file_array_sent = explode('-', $file_string);
	$new_file_array = array();
	
	foreach ($file_array_sent as $file_guid) {
		if ($entity = get_entity($file_guid)) {
			if ($entity->canEdit()){
				array_push($new_file_array, $file_guid);
			}
			if (!$album_guid) 
				$album_guid = $entity->container_guid;
			
		}
	}
	
	$title = elgg_echo('tidypics:editprops');
	$area2 .= elgg_view_title($title);
    $area2 .= elgg_view("tidypics/forms/edit_multi", array('file_array' => $new_file_array, 'album_guid' => $album_guid));
	$body = elgg_view_layout('two_column_left_sidebar', $area1, $area2);
	page_draw($title, $body);
?>