*/ class admin_plugin_deletehistory extends DokuWiki_Admin_Plugin { /** * @return int sort number in admin menu */ public function getMenuSort() { return 200; } /** * Should carry out any processing required by the plugin. */ public function handle() { if (isset($_REQUEST['cmd']) && key($_REQUEST['cmd']) === 'delete' && checkSecurityToken()) { /** @var helper_plugin_deletehistory $helper */ $helper = $this->loadHelper('deletehistory'); $helper->deleteAllHistory(); msg($this->getLang('done')); } } /** * Render HTML output */ public function html() { ptln('