1f21dad39SAndreas Gohr<?php 2f21dad39SAndreas Gohr 3f21dad39SAndreas Gohrnamespace dokuwiki\Action; 4f21dad39SAndreas Gohr 5f21dad39SAndreas Gohruse dokuwiki\Action\Exception\ActionAbort; 6f21dad39SAndreas Gohr 7*ab583a1bSAndreas Gohr/** 8*ab583a1bSAndreas Gohr * Class Recover 9*ab583a1bSAndreas Gohr * 10*ab583a1bSAndreas Gohr * Recover a draft 11*ab583a1bSAndreas Gohr * 12*ab583a1bSAndreas Gohr * @package dokuwiki\Action 13*ab583a1bSAndreas Gohr */ 14f21dad39SAndreas Gohrclass Recover extends AbstractAliasAction { 15f21dad39SAndreas Gohr 16*ab583a1bSAndreas Gohr /** @inheritdoc */ 17f21dad39SAndreas Gohr public function preProcess() { 18f21dad39SAndreas Gohr throw new ActionAbort('edit'); 19f21dad39SAndreas Gohr } 20f21dad39SAndreas Gohr 21f21dad39SAndreas Gohr} 22