savedraft(); parent::preProcess(); } /** @inheritdoc */ public function tplContent() { global $TEXT; (new Ui\Editor)->show(); (new Ui\PageView($TEXT))->show(); } /** * Saves a draft on preview */ protected function savedraft() { global $ID, $INFO; $draft = new \dokuwiki\Draft($ID, $INFO['client']); if (!$draft->saveDraft()) { $errors = $draft->getErrors(); foreach ($errors as $error) { msg(hsc($error), -1); } } } }