aboutsummaryrefslogtreecommitdiff
path: root/pages
diff options
context:
space:
mode:
authorCash Costello <cash.costello@gmail.com>2010-10-31 20:03:50 +0000
committerCash Costello <cash.costello@gmail.com>2010-10-31 20:03:50 +0000
commit243e836190128b14e1c5aa53b6d01b6771b19d8c (patch)
tree7e426606f124790c6ec31dc5da0c7f09a41dcc67 /pages
parent92ec25ec441330323e4fcbdfa33ebcf900420097 (diff)
downloadelgg-243e836190128b14e1c5aa53b6d01b6771b19d8c.tar.gz
elgg-243e836190128b14e1c5aa53b6d01b6771b19d8c.tar.bz2
First cut at a album sorting interface
Diffstat (limited to 'pages')
-rw-r--r--pages/sortalbum.php38
-rw-r--r--pages/viewalbum.php3
2 files changed, 41 insertions, 0 deletions
diff --git a/pages/sortalbum.php b/pages/sortalbum.php
new file mode 100644
index 000000000..0bbd8159e
--- /dev/null
+++ b/pages/sortalbum.php
@@ -0,0 +1,38 @@
+<?php
+/**
+ * Tidypics Album Sort Page
+ *
+ * This displays a listing of all the photos so that they can be sorted
+ */
+
+// if this page belongs to a closed group, prevent anyone outside group from seeing
+if (is_callable('group_gatekeeper')) {
+ group_gatekeeper();
+}
+
+// get the album entity
+$album_guid = (int) get_input('guid');
+$album = get_entity($album_guid);
+
+// panic if we can't get it
+if (!$album) {
+ forward();
+}
+
+// container should always be set, but just in case
+if ($album->container_guid) {
+ set_page_owner($album->container_guid);
+} else {
+ set_page_owner($album->owner_guid);
+}
+
+$owner = page_owner_entity();
+
+$title = sprintf(elgg_echo('tidypics:sort'), $album->title);
+
+$content = elgg_view_title($title);
+$content .= elgg_view('tidypics/sort', array('album' => $album));
+
+$body = elgg_view_layout('two_column_left_sidebar', '', $content);
+
+page_draw($title, $body);
diff --git a/pages/viewalbum.php b/pages/viewalbum.php
index fe3c5bc62..870596769 100644
--- a/pages/viewalbum.php
+++ b/pages/viewalbum.php
@@ -54,6 +54,9 @@ if (can_write_to_container(0, $album->container_guid)) {
add_submenu_item( elgg_echo('album:addpix'),
$CONFIG->wwwroot . 'pg/photos/upload/' . $album_guid,
'photos');
+ add_submenu_item( elgg_echo('album:sort'),
+ $CONFIG->wwwroot . 'pg/photos/sort/' . $album_guid,
+ 'photos');
add_submenu_item( elgg_echo('album:edit'),
$CONFIG->wwwroot . 'pg/photos/edit/' . $album_guid,
'photos');