diff options
author | icewing <icewing@36083f99-b078-4883-b0ff-0f9b5a30f544> | 2008-04-02 22:53:55 +0000 |
---|---|---|
committer | icewing <icewing@36083f99-b078-4883-b0ff-0f9b5a30f544> | 2008-04-02 22:53:55 +0000 |
commit | 6aaa89ba29640f72280d3e59e3dab42651a2d885 (patch) | |
tree | 90c301f213d016a9fed8aa1af7fb46471008b585 /mod/guidbrowser/start.php | |
parent | ffa39470d8513396e33f56e018cba22b35419dfc (diff) | |
download | elgg-6aaa89ba29640f72280d3e59e3dab42651a2d885.tar.gz elgg-6aaa89ba29640f72280d3e59e3dab42651a2d885.tar.bz2 |
Marcus Povey <marcus@dushka.co.uk>
* End of day
git-svn-id: https://code.elgg.org/elgg/trunk@377 36083f99-b078-4883-b0ff-0f9b5a30f544
Diffstat (limited to 'mod/guidbrowser/start.php')
-rw-r--r-- | mod/guidbrowser/start.php | 25 |
1 files changed, 25 insertions, 0 deletions
diff --git a/mod/guidbrowser/start.php b/mod/guidbrowser/start.php new file mode 100644 index 000000000..e5a08f02e --- /dev/null +++ b/mod/guidbrowser/start.php @@ -0,0 +1,25 @@ +<?php + function guidbrowser_init($event, $object_type, $object = null) { + + global $CONFIG; + // register_translations($CONFIG->pluginspath . "guidbrowser/languages/"); + add_menu("GUID Browser",$CONFIG->wwwroot . "mod/tasklist/",array( + menu_item("The GUID browser",$CONFIG->wwwroot."mod/guidbrowser/"), + )); + } + + function guidbrowser_displayentity($entity) + { + // display summary + // display full on clickdown + } + + function guidbrowser_display($offset = 0, $limit = 10, $type = "", $subtype = "") + { + + } + + + // Make sure test_init is called on initialisation + register_event_handler('init','system','guidbrowser_init'); +?>
\ No newline at end of file |