aboutsummaryrefslogtreecommitdiff
path: root/start.php
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 /start.php
parent92ec25ec441330323e4fcbdfa33ebcf900420097 (diff)
downloadelgg-243e836190128b14e1c5aa53b6d01b6771b19d8c.tar.gz
elgg-243e836190128b14e1c5aa53b6d01b6771b19d8c.tar.bz2
First cut at a album sorting interface
Diffstat (limited to 'start.php')
-rw-r--r--start.php8
1 files changed, 8 insertions, 0 deletions
diff --git a/start.php b/start.php
index 4d2b12798..1401c2c2c 100644
--- a/start.php
+++ b/start.php
@@ -257,6 +257,13 @@ function tidypics_page_handler($page) {
include($CONFIG->pluginspath . "tidypics/pages/viewalbum.php");
break;
+ case "sort": //sort a photo album
+ if (isset($page[1])) {
+ set_input('guid', $page[1]);
+ }
+ include($CONFIG->pluginspath . "tidypics/pages/sortalbum.php");
+ break;
+
case "new": //create new album
if (isset($page[1])) {
set_input('username', $page[1]);
@@ -532,6 +539,7 @@ register_action("tidypics/upload", false, $CONFIG->pluginspath . "tidypics/actio
register_action("tidypics/ajax_upload", true, $CONFIG->pluginspath . "tidypics/actions/ajax_upload.php");
register_action("tidypics/ajax_upload_complete", true, $CONFIG->pluginspath . "tidypics/actions/ajax_upload_complete.php");
register_action("tidypics/addalbum", false, $CONFIG->pluginspath. "tidypics/actions/addalbum.php");
+register_action("tidypics/sortalbum", false, $CONFIG->pluginspath. "tidypics/actions/sortalbum.php");
register_action("tidypics/edit", false, $CONFIG->pluginspath. "tidypics/actions/edit.php");
register_action("tidypics/delete", false, $CONFIG->pluginspath. "tidypics/actions/delete.php");
register_action("tidypics/edit_multi", false, $CONFIG->pluginspath. "tidypics/actions/edit_multi.php");