aboutsummaryrefslogtreecommitdiff
path: root/mod/exporttest/start.php
diff options
context:
space:
mode:
authoricewing <icewing@36083f99-b078-4883-b0ff-0f9b5a30f544>2008-03-28 18:23:39 +0000
committericewing <icewing@36083f99-b078-4883-b0ff-0f9b5a30f544>2008-03-28 18:23:39 +0000
commitf37e894f9c722f4c7f17d1f3e655e8584da1e4b9 (patch)
treea58905e182f6989e0e3bf10d687782844a4b26ac /mod/exporttest/start.php
parent2107f3f3de4898e64fa16538186031c5fda4d6d7 (diff)
downloadelgg-f37e894f9c722f4c7f17d1f3e655e8584da1e4b9.tar.gz
elgg-f37e894f9c722f4c7f17d1f3e655e8584da1e4b9.tar.bz2
Marcus Povey <marcus@dushka.co.uk>
* Export test git-svn-id: https://code.elgg.org/elgg/trunk@288 36083f99-b078-4883-b0ff-0f9b5a30f544
Diffstat (limited to 'mod/exporttest/start.php')
-rw-r--r--mod/exporttest/start.php15
1 files changed, 15 insertions, 0 deletions
diff --git a/mod/exporttest/start.php b/mod/exporttest/start.php
new file mode 100644
index 000000000..d25e5c06d
--- /dev/null
+++ b/mod/exporttest/start.php
@@ -0,0 +1,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');
+?> \ No newline at end of file