You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 

25 lines
349 B

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