about summary refs log tree commit diff stats
path: root/wiki/inc/Action/Show.php
diff options
context:
space:
mode:
Diffstat (limited to 'wiki/inc/Action/Show.php')
-rw-r--r--wiki/inc/Action/Show.php36
1 files changed, 36 insertions, 0 deletions
diff --git a/wiki/inc/Action/Show.php b/wiki/inc/Action/Show.php
new file mode 100644
index 0000000..a5cb534
--- /dev/null
+++ b/wiki/inc/Action/Show.php
@@ -0,0 +1,36 @@
+<?php
+/**
+ * Created by IntelliJ IDEA.
+ * User: andi
+ * Date: 2/10/17
+ * Time: 4:32 PM
+ */
+
+namespace dokuwiki\Action;
+
+/**
+ * Class Show
+ *
+ * The default action of showing a page
+ *
+ * @package dokuwiki\Action
+ */
+class Show extends AbstractAction {
+
+    /** @inheritdoc */
+    public function minimumPermission() {
+        return AUTH_READ;
+    }
+
+    /** @inheritdoc */
+    public function preProcess() {
+        global $ID;
+        unlock($ID);
+    }
+
+    /** @inheritdoc */
+    public function tplContent() {
+        html_show();
+    }
+
+}
the previous revision' href='/danisanti/profani-tty/blame/themes/solarized-dark?id=5fcd40174988f3c786386a3337e6e1ef955b015f'>^
63770815 ^

49271e46 ^
3c59f985 ^

63770815 ^
3c59f985 ^
63770815 ^





3c59f985 ^
63770815 ^

3c59f985 ^
63770815 ^




3c59f985 ^
63770815 ^


3c59f985 ^
63770815 ^



5dbef8ad ^
63770815 ^

3c59f985 ^

63770815 ^
3c59f985 ^
63770815 ^

3c59f985 ^

63770815 ^
3c59f985 ^
63770815 ^

3c59f985 ^

63770815 ^
3c59f985 ^
63770815 ^

3c59f985 ^



1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82