1<?php 2/** 3 * 4 * @license GPL 2 (http://www.gnu.org/licenses/gpl.html) 5 * @author peterfromearth <coder@peterfromearth.de> 6 */ 7 8class action_plugin_abstract extends DokuWiki_Action_Plugin { 9 10 /** 11 * Register the eventhandlers 12 */ 13 function register(Doku_Event_Handler $controller) { 14 //$controller->register_hook('PARSER_METADATA_RENDER', 'AFTER', $this, '_abstract'); 15 } 16 function _abstract(&$event, $param) { 17 dbg($event); 18 19 } 20} 21