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