1<?php 2/** 3 * DokuWiki Plugin @@PLUGIN_NAME@@ (Admin Component) 4 * 5 * @license GPL 2 http://www.gnu.org/licenses/gpl-2.0.html 6 * @author @@AUTHOR_NAME@@ <@@AUTHOR_MAIL@@> 7 */ 8class @@PLUGIN_COMPONENT_NAME@@ extends \dokuwiki\Extension\AdminPlugin 9{ 10 11 /** @inheritDoc */ 12 public function handle() 13 { 14 // FIXME data processing 15 } 16 17 /** @inheritDoc */ 18 public function html() 19 { 20 // FIXME render output 21 echo '<h1>' . $this->getLang('menu') . '</h1>'; 22 } 23} 24 25