blob: e5a08f02eaa3e26cb3e83428784efef762d865ef (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
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');
?>
|