aboutsummaryrefslogtreecommitdiff
path: root/mod/guidtool/start.php
diff options
context:
space:
mode:
authorben <ben@36083f99-b078-4883-b0ff-0f9b5a30f544>2009-03-05 14:58:20 +0000
committerben <ben@36083f99-b078-4883-b0ff-0f9b5a30f544>2009-03-05 14:58:20 +0000
commit6ee2b596da12dc3ac5f6ba6d4ca5545df5beab2d (patch)
tree2cc20df8e2eb0345d934952cd06a4cf5a9430343 /mod/guidtool/start.php
parent89a9e93a915ca7c576e187f0c38d2c202fed05b2 (diff)
downloadelgg-6ee2b596da12dc3ac5f6ba6d4ca5545df5beab2d.tar.gz
elgg-6ee2b596da12dc3ac5f6ba6d4ca5545df5beab2d.tar.bz2
Farewell APIadmin, farewell GUIDtool. We'll see you over in the plugins repo.
git-svn-id: https://code.elgg.org/elgg/trunk@3096 36083f99-b078-4883-b0ff-0f9b5a30f544
Diffstat (limited to 'mod/guidtool/start.php')
-rw-r--r--mod/guidtool/start.php128
1 files changed, 0 insertions, 128 deletions
diff --git a/mod/guidtool/start.php b/mod/guidtool/start.php
deleted file mode 100644
index 8dc9dd65a..000000000
--- a/mod/guidtool/start.php
+++ /dev/null
@@ -1,128 +0,0 @@
-<?php
- /**
- * Elgg GUID Tool
- *
- * @package ElggGUIDTool
- * @license http://www.gnu.org/licenses/old-licenses/gpl-2.0.html GNU Public License version 2
- * @author Curverider Ltd
- * @copyright Curverider Ltd 2008-2009
- * @link http://elgg.com/
- */
-
- /**
- * Initialise the tool and set menus.
- */
- function guidtool_init()
- {
- global $CONFIG;
-
- /*if (isadminloggedin())
- {
- add_menu(elgg_echo('guidtool'), $CONFIG->wwwroot . "pg/guidtool/",array(
-// menu_item(elgg_echo('guidtool:browse'), $CONFIG->wwwroot."pg/guidtool/"),
-// menu_item(elgg_echo('guidtool:import'), $CONFIG->wwwroot."pg/guidtool/import/"),
- ),'guidtool');
-
- }*/
-
- // Register a page handler, so we can have nice URLs
- register_page_handler('guidtool','guidtool_page_handler');
-
- // Register some actions
- register_action("guidtool/delete",false, $CONFIG->pluginspath . "guidtool/actions/delete.php", true);
-
- }
-
- /**
- * Post init gumph.
- */
- function guidtool_page_setup()
- {
- global $CONFIG;
-
- if ((isadminloggedin()) && (get_context()=='admin'))
- {
- add_submenu_item(elgg_echo('guidtool:browse'), $CONFIG->wwwroot."pg/guidtool/");
- add_submenu_item(elgg_echo('guidtool:import'), $CONFIG->wwwroot."pg/guidtool/import/");
- }
- }
-
- /**
- * Log browser page handler
- *
- * @param array $page Array of page elements, forwarded by the page handling mechanism
- */
- function guidtool_page_handler($page)
- {
- global $CONFIG;
-
- if (isset($page[0]))
- {
- switch ($page[0])
- {
- case 'view' :
- if ((isset($page[1]) && (!empty($page[1])))) {
- add_submenu_item('GUID:'.$page[1], $CONFIG->url . "pg/guidtool/view/{$page[1]}/");
- add_submenu_item(elgg_echo('guidbrowser:export'), $CONFIG->url . "pg/guidtool/export/{$page[1]}/");
- }
-
- case 'export':
-
- if ((isset($page[1]) && (!empty($page[1])))) {
-
- set_input('entity_guid', $page[1]);
- if ($page[0] == 'view')
- include($CONFIG->pluginspath . "guidtool/view.php");
- else
- {
- if ((isset($page[2]) && (!empty($page[2])))) {
- set_input('format', $page[2]);
- include($CONFIG->pluginspath . "guidtool/export.php");
- } else {
- set_input('forward_url', $CONFIG->url . "pg/guidtool/export/$page[1]/");
- include($CONFIG->pluginspath . "guidtool/format_picker.php");
- }
- }
- }
- else include($CONFIG->pluginspath . "guidtool/index.php");
- break;
- case 'import' :
- if ((isset($page[1]) && (!empty($page[1])))) {
- set_input('format', $page[1]);
- include($CONFIG->pluginspath . "guidtool/import.php");
- } else {
- set_input('forward_url', $CONFIG->url . "pg/guidtool/import/");
- include($CONFIG->pluginspath . "guidtool/format_picker.php");
- }
- break;
- default:
- include($CONFIG->pluginspath . "guidtool/index.php");
- }
- }
- else
- include($CONFIG->pluginspath . "guidtool/index.php");
- }
-
- /**
- * Get a list of import actions
- *
- */
- function guidtool_get_import_actions()
- {
- global $CONFIG;
-
- $return = array();
-
- foreach ($CONFIG->actions as $action => $handler)
- {
- if (strpos($action, "import/")===0)
- $return[] = substr($action, 7);
- }
-
- return $return;
- }
-
- // Initialise log
- register_elgg_event_handler('init','system','guidtool_init');
- register_elgg_event_handler('pagesetup','system','guidtool_page_setup');
-?> \ No newline at end of file