aboutsummaryrefslogtreecommitdiff
path: root/mod/test/start.php
diff options
context:
space:
mode:
authorben <ben@36083f99-b078-4883-b0ff-0f9b5a30f544>2008-03-31 13:34:41 +0000
committerben <ben@36083f99-b078-4883-b0ff-0f9b5a30f544>2008-03-31 13:34:41 +0000
commitaecf239a1aac95800bc7a34434bf4d96f528269d (patch)
tree823d757e9c53a6c1dda0979259cc5941f0fab85e /mod/test/start.php
parent9e349a24a228680660e2be031783d5b9fcb253b0 (diff)
downloadelgg-aecf239a1aac95800bc7a34434bf4d96f528269d.tar.gz
elgg-aecf239a1aac95800bc7a34434bf4d96f528269d.tar.bz2
Removing the mod/test plugin. It doesn't need to be here...
git-svn-id: https://code.elgg.org/elgg/trunk@294 36083f99-b078-4883-b0ff-0f9b5a30f544
Diffstat (limited to 'mod/test/start.php')
-rw-r--r--mod/test/start.php28
1 files changed, 0 insertions, 28 deletions
diff --git a/mod/test/start.php b/mod/test/start.php
deleted file mode 100644
index f8247c6b5..000000000
--- a/mod/test/start.php
+++ /dev/null
@@ -1,28 +0,0 @@
-<?php
-
- /**
- * Test plugin
- *
- * These parameters are required for the event API, but we won't use them:
- *
- * @param unknown_type $event
- * @param unknown_type $object_type
- * @param unknown_type $object
- */
-
- function test_init($event, $object_type, $object = null) {
-
- global $CONFIG;
-
- // Test menu item
- add_menu("Test plugin",$CONFIG->wwwroot . "mod/test/",array(
- menu_item("Main test plugin page",$CONFIG->wwwroot."mod/test/"),
- ));
-
- }
-
- // Make sure test_init is called on initialisation
- register_event_handler('init','system','test_init');
- global $CONFIG;
- register_action('banana',true,"mod/test/banana.php");
-?> \ No newline at end of file