diff options
author | Andreas Gohr <andi@splitbrain.org> | 2012-04-24 22:21:05 +0200 |
---|---|---|
committer | Andreas Gohr <andi@splitbrain.org> | 2012-04-27 01:11:36 +0200 |
commit | 23684d4a1920ae8e92fda68725e49035614f3d8a (patch) | |
tree | 067451816346ac921a065bdce508fa64df892be6 /lib/plugins/testing/action.php | |
parent | f2ae886abc5bb17b10e0313506b7bdf1f84f5726 (diff) | |
download | rpg-23684d4a1920ae8e92fda68725e49035614f3d8a.tar.gz rpg-23684d4a1920ae8e92fda68725e49035614f3d8a.tar.bz2 |
some cleanup for the testing plugin
Diffstat (limited to 'lib/plugins/testing/action.php')
-rw-r--r-- | lib/plugins/testing/action.php | 10 |
1 files changed, 8 insertions, 2 deletions
diff --git a/lib/plugins/testing/action.php b/lib/plugins/testing/action.php index 22a670eee..e829847b6 100644 --- a/lib/plugins/testing/action.php +++ b/lib/plugins/testing/action.php @@ -1,5 +1,11 @@ <?php - +/** + * Plugin for testing the test system + * + * This plugin doesn't really do anything and should always be disabled + * + * @author Tobias Sarnowski <tobias@trustedco.de> + */ class action_plugin_testing extends DokuWiki_Action_Plugin { function register(&$controller) { $controller->register_hook('DOKUWIKI_STARTED', 'AFTER', $this, 'dokuwikiStarted'); @@ -8,6 +14,6 @@ class action_plugin_testing extends DokuWiki_Action_Plugin { function dokuwikiStarted() { $param = array(); trigger_event('TESTING_PLUGIN_INSTALLED', $param); - msg('hohoho'); + msg('The testing plugin is enabled and should be disabled.',-1); } } |