xref: /dokuwiki/inc/Action/Locked.php (revision f21dad3906d4ec6b3d86685599409894630abdc1)
1<?php
2/**
3 * Created by IntelliJ IDEA.
4 * User: andi
5 * Date: 2/11/17
6 * Time: 11:43 AM
7 */
8
9namespace dokuwiki\Action;
10
11class Locked extends AbstractAction {
12
13    /** @inheritdoc */
14    function minimumPermission() {
15        return AUTH_READ;
16    }
17
18    public function tplContent() {
19        html_locked();
20    }
21
22}
23