1<?php 2 3class action_plugin_testing extends DokuWiki_Action_Plugin { 4 function register(&$controller) { 5 $controller->register_hook('DOKUWIKI_STARTED', 'AFTER', $this, 'dokuwikiStarted'); 6 } 7 8 function dokuwikiStarted() { 9 $param = array(); 10 trigger_event('TESTING_PLUGIN_INSTALLED', $param); 11 msg('hohoho'); 12 } 13} 14