1<?php 2/** 3 * DokuWiki Plugin bulletodo (Action Component) 4 * 5 * @license GPL 2 http://www.gnu.org/licenses/gpl-2.0.html 6 * @author dodotori <dodotori@localhost> 7 8 9 */ 10 11class action_plugin_bulletodo extends \dokuwiki\Extension\ActionPlugin 12{ 13function register(Doku_Event_Handler $controller) { 14 $controller->register_hook('TPL_ACT_RENDER', 'AFTER', $this, 'bulletshow'); 15 } 16 function bulletshow($event, $param) { 17 echo""; 18 19 } 20 21} 22