blob: 613747784e756b87df22edee26d8c0b34a09b2cf (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
|
<?php
/**
* Sorting album action - takes a comma separated list of image guids
*/
$album_guid = get_input('album_guid');
$album = get_entity($album_guid);
if (!$album) {
}
$guids = get_input('guids');
$guids = explode(',', $guids);
$album->setImageList($guids);
system_message(elgg_echo('tidypics:album:sorted', array($album->title)));
forward($album->getURL());
|