blob: d25e5c06df611e5106ddf92ee021928b65c28ed5 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
|
<?php
function exporttest_init($event, $object_type, $object = null) {
global $CONFIG;
add_menu("Export GUID",$CONFIG->wwwroot . "mod/exporttest/",array(
menu_item("The GUID Exporter",$CONFIG->wwwroot."mod/exporttest/"),
));
}
// Make sure test_init is called on initialisation
register_event_handler('init','system','exporttest_init');
?>
|