aboutsummaryrefslogtreecommitdiff
path: root/start.php
diff options
context:
space:
mode:
authorCash Costello <cash.costello@gmail.com>2011-11-28 07:50:23 -0500
committerCash Costello <cash.costello@gmail.com>2011-11-28 07:50:23 -0500
commitefdd4b6544e14355f6ae0e6151c6f828271d3913 (patch)
treeddc1de199af538df367e625ab5f3cea420e039cd /start.php
parentca5a35607dfb277cecba120ce27eece7c59f270a (diff)
downloadelgg-efdd4b6544e14355f6ae0e6151c6f828271d3913.tar.gz
elgg-efdd4b6544e14355f6ae0e6151c6f828271d3913.tar.bz2
working on album sorting
Diffstat (limited to 'start.php')
-rw-r--r--start.php16
1 files changed, 10 insertions, 6 deletions
diff --git a/start.php b/start.php
index 817578607..b24f3cb61 100644
--- a/start.php
+++ b/start.php
@@ -30,6 +30,11 @@ function tidypics_init() {
elgg_extend_view('css/elgg', 'tidypics/css');
elgg_extend_view('css/admin', 'tidypics/css');
+ // Register the JavaScript lib
+ $js = elgg_get_simplecache_url('js', 'photos/tidypics');
+ elgg_register_simplecache_view('js/photos/tidypics');
+ elgg_register_js('tidypics', $js, 'footer');
+
// Add photos link to owner block/hover menus
elgg_register_plugin_hook_handler('register', 'menu:owner_block', 'tidypics_owner_block_menu');
@@ -87,7 +92,6 @@ function tidypics_init() {
//register_action("tidypics/ajax_upload", true, "$base_dir/ajax_upload.php");
//register_action("tidypics/ajax_upload_complete", true, "$base_dir/ajax_upload_complete.php");
//register_action("tidypics/sortalbum", false, "$base_dir/sortalbum.php");
- //register_action("tidypics/edit", false, "$base_dir/edit.php");
//register_action("tidypics/addtag", false, "$base_dir/addtag.php");
//register_action("tidypics/deletetag", false, "$base_dir/deletetag.php");
@@ -247,6 +251,8 @@ function tidypics_page_handler($page) {
return false;
}
+ elgg_load_js('tidypics');
+
$base = elgg_get_plugins_path() . 'tidypics/pages/photos';
switch ($page[0]) {
case "all": // all site albums
@@ -296,11 +302,9 @@ function tidypics_page_handler($page) {
}
break;
- case "sort": //sort a photo album
- if (isset($page[1])) {
- set_input('guid', $page[1]);
- }
- include($CONFIG->pluginspath . "tidypics/pages/sortalbum.php");
+ case "sort": // sort a photo album
+ set_input('guid', $page[1]);
+ require "$base/album/sort.php";
break;
case "image": //view an image