diff options
author | marcus <marcus@36083f99-b078-4883-b0ff-0f9b5a30f544> | 2008-07-31 09:41:16 +0000 |
---|---|---|
committer | marcus <marcus@36083f99-b078-4883-b0ff-0f9b5a30f544> | 2008-07-31 09:41:16 +0000 |
commit | 79601adfad8d40fdb202efbc3071683506ffcae1 (patch) | |
tree | 999005a0368c427b35321a0f5aa6b75d0862d2b5 /mod/guidtool/start.php | |
parent | 27145bbf5a57d66f148b4324c659202bb7d78c92 (diff) | |
download | elgg-79601adfad8d40fdb202efbc3071683506ffcae1.tar.gz elgg-79601adfad8d40fdb202efbc3071683506ffcae1.tar.bz2 |
Added guidtool and switching to desktop.
git-svn-id: https://code.elgg.org/elgg/trunk@1622 36083f99-b078-4883-b0ff-0f9b5a30f544
Diffstat (limited to 'mod/guidtool/start.php')
-rw-r--r-- | mod/guidtool/start.php | 60 |
1 files changed, 60 insertions, 0 deletions
diff --git a/mod/guidtool/start.php b/mod/guidtool/start.php new file mode 100644 index 000000000..f658d5abf --- /dev/null +++ b/mod/guidtool/start.php @@ -0,0 +1,60 @@ +<?php + /** + * Elgg GUID Tool + * + * @package ElggGUIDTool + * @license http://www.gnu.org/licenses/old-licenses/gpl-2.0.html GNU Public License version 2 + * @author Marcus Povey + * @copyright Curverider Ltd 2008 + * @link http://elgg.com/ + */ + + /** + * Initialise the tool and set menus. + */ + function guidtool_init() + { + global $CONFIG; + + if (isloggedin()) + { + 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'); + } + + /** + * 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 'import' : + include($CONFIG->pluginspath . "guidtool/import.php"); + break; + default: + include($CONFIG->pluginspath . "guidtool/index.php"); + } + } + else + include($CONFIG->pluginspath . "guidtool/index.php"); + } + + + + // Initialise log + register_elgg_event_handler('init','system','guidtool_init'); +?>
\ No newline at end of file |