aboutsummaryrefslogtreecommitdiff
path: root/mod/guidbrowser/start.php
diff options
context:
space:
mode:
Diffstat (limited to 'mod/guidbrowser/start.php')
-rw-r--r--mod/guidbrowser/start.php25
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