*/ /** * All DokuWiki plugins to extend the admin function * need to inherit from this class **/ class admin_plugin_monitor extends AdminPlugin { /** * Return the path to the icon being displayed in the main admin menu. * * @return string full path to the icon file **/ public function getMenuIcon() { $plugin = $this->getPluginName(); return DOKU_PLUGIN . $plugin . '/img/admin.svg'; } /** * output appropriate html */ public function html() { $svg = ''; /* Plugin Headline */ echo '
'; echo '

Monitor Plugin

'; /* tab navigation */ echo ''; /* Live tab */ echo '
'; echo '

Today

'; echo '
Loading …
'; echo '
'; echo '
Visitor log'; echo '
    '; echo '
    '; echo ''; echo '
    '; echo '
    '; } }