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