xref: /plugin/dev/skel/admin.php (revision 8673a04e3e6febe85a87104acdf3ce3205315685)
170316b84SAndreas Gohr<?php
2*8673a04eSAndreas Gohr
3*8673a04eSAndreas Gohruse dokuwiki\Extension\AdminPlugin;
4*8673a04eSAndreas Gohr
570316b84SAndreas Gohr/**
670316b84SAndreas Gohr * DokuWiki Plugin @@PLUGIN_NAME@@ (Admin Component)
770316b84SAndreas Gohr *
870316b84SAndreas Gohr * @license GPL 2 http://www.gnu.org/licenses/gpl-2.0.html
970316b84SAndreas Gohr * @author @@AUTHOR_NAME@@ <@@AUTHOR_MAIL@@>
1070316b84SAndreas Gohr */
11*8673a04eSAndreas Gohrclass @@PLUGIN_COMPONENT_NAME@@ extends AdminPlugin
1270316b84SAndreas Gohr{
1370316b84SAndreas Gohr    /** @inheritDoc */
1470316b84SAndreas Gohr    public function handle()
1570316b84SAndreas Gohr    {
1670316b84SAndreas Gohr        // FIXME data processing
1770316b84SAndreas Gohr    }
1870316b84SAndreas Gohr
1970316b84SAndreas Gohr    /** @inheritDoc */
2070316b84SAndreas Gohr    public function html()
2170316b84SAndreas Gohr    {
2270316b84SAndreas Gohr        // FIXME render output
2370316b84SAndreas Gohr        echo '<h1>' . $this->getLang('menu') . '</h1>';
2470316b84SAndreas Gohr    }
2570316b84SAndreas Gohr}
26