about summary refs log tree commit diff stats
path: root/wiki/inc/Action/Cancel.php
diff options
context:
space:
mode:
Diffstat (limited to 'wiki/inc/Action/Cancel.php')
-rw-r--r--wiki/inc/Action/Cancel.php25
1 files changed, 25 insertions, 0 deletions
diff --git a/wiki/inc/Action/Cancel.php b/wiki/inc/Action/Cancel.php
new file mode 100644
index 0000000..d4d8277
--- /dev/null
+++ b/wiki/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');
+    }
+
+}