xref: /dokuwiki/inc/Action/Show.php (revision f023c68e1425535b9c268586654ab81924753cf2)
1<?php
2/**
3 * Created by IntelliJ IDEA.
4 * User: andi
5 * Date: 2/10/17
6 * Time: 4:32 PM
7 */
8
9namespace dokuwiki\Action;
10
11/**
12 * Class Show
13 *
14 * The default action of showing a page
15 *
16 * @package dokuwiki\Action
17 */
18class Show extends AbstractAction {
19
20    /** @inheritdoc */
21    public function minimumPermission() {
22        return AUTH_READ;
23    }
24
25    /** @inheritdoc */
26    public function tplContent() {
27        html_show();
28    }
29
30}
31