*/ if(!defined('DOKU_INC')) die(); class helper_plugin_example extends DokuWiki_Plugin { /** * Initialisierung (optional nur wenn Bedarf) */ var $config = array(); function helper_plugin_example(){ global $conf; $this->config = $conf; } /** * Funktion für irgend etwas */ function doSomething() { // hier Code schreiben } } ?>