summaryrefslogtreecommitdiff
path: root/platform/www/inc/Action/Cancel.php
diff options
context:
space:
mode:
Diffstat (limited to 'platform/www/inc/Action/Cancel.php')
-rw-r--r--platform/www/inc/Action/Cancel.php25
1 files changed, 25 insertions, 0 deletions
diff --git a/platform/www/inc/Action/Cancel.php b/platform/www/inc/Action/Cancel.php
new file mode 100644
index 0000000..d4d8277
--- /dev/null
+++ b/platform/www/inc/Action/Cancel.php
@@ -0,0 +1,25 @@
+<?php
+
+namespace dokuwiki\Action;
+
+use dokuwiki\Action\Exception\ActionAbort;
+
+/**
+ * Class Cancel
+ *
+ * Alias for show. Aborts editing
+ *
+ * @package dokuwiki\Action
+ */
+class Cancel extends AbstractAliasAction {
+
+ /** @inheritdoc */
+ public function preProcess() {
+ global $ID;
+ unlock($ID);
+
+ // continue with draftdel -> redirect -> show
+ throw new ActionAbort('draftdel');
+ }
+
+}