xref: /dokuwiki/inc/Action/Show.php (revision 64ab5140f7b1c996873fbfe9bab26d9202fbb773)
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
11class Show extends AbstractAction {
12
13    /** @inheritdoc */
14    function minimumPermission() {
15        return AUTH_READ;
16    }
17
18    public function tplContent() {
19        html_show();
20    }
21
22}
23