From 6ee2b596da12dc3ac5f6ba6d4ca5545df5beab2d Mon Sep 17 00:00:00 2001 From: ben Date: Thu, 5 Mar 2009 14:58:20 +0000 Subject: 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 --- mod/apiadmin/start.php | 79 -------------------------------------------------- 1 file changed, 79 deletions(-) delete mode 100644 mod/apiadmin/start.php (limited to 'mod/apiadmin/start.php') diff --git a/mod/apiadmin/start.php b/mod/apiadmin/start.php deleted file mode 100644 index 5c9d4cce2..000000000 --- a/mod/apiadmin/start.php +++ /dev/null @@ -1,79 +0,0 @@ -pluginspath . "apiadmin/actions/revokekey.php", true); - register_action("apiadmin/generate",false, $CONFIG->pluginspath . "apiadmin/actions/generate.php", true); - } - - /** - * Page setup. Adds admin controls to the admin panel. - * - */ - function apiadmin_pagesetup() - { - if (get_context() == 'admin' && isadminloggedin()) { - global $CONFIG; - add_submenu_item(elgg_echo('apiadmin'), $CONFIG->wwwroot . 'pg/apiadmin/'); - } - } - - - function apiadmin_page_handler($page) - { - global $CONFIG; - - if ($page[0]) - { - switch ($page[0]) - { - default : include($CONFIG->pluginspath . "apiadmin/index.php"); - } - } - else - include($CONFIG->pluginspath . "apiadmin/index.php"); - } - - function apiadmin_delete_key($event, $object_type, $object = null) - { - global $CONFIG; - - if (($object) && ($object->subtype == get_subtype_id('object', 'api_key'))) - { - // Delete - return remove_api_user($CONFIG->site_id, $object->public); - } - - return true; - } - - - // Make sure test_init is called on initialisation - register_elgg_event_handler('init','system','apiadmin_init'); - register_elgg_event_handler('pagesetup','system','apiadmin_pagesetup'); - - // Hook into delete to revoke secret keys - register_elgg_event_handler('delete','object','apiadmin_delete_key'); -?> \ No newline at end of file -- cgit v1.2.3