*/ class admin_plugin_searchindex extends DokuWiki_Admin_Plugin { /** * return sort order for position in admin menu */ public function getMenuSort() { return 40; } /** * handle user request */ public function handle() { } /** * output appropriate html */ public function html() { echo $this->locale_xhtml('intro'); echo '
'; echo '
'; echo ''; echo '

' . $this->getLang('rebuild_tip') . '

'; echo ''; echo '

' . $this->getLang('update_tip') . '

'; echo '
'; echo '
'; echo '
'; } } //Setup VIM: ex: et ts=4 enc=utf-8 :