Skip to content
Snippets Groups Projects
Show.php 545 B
Newer Older
<?php
/**
 * Created by IntelliJ IDEA.
 * User: andi
 * Date: 2/10/17
 * Time: 4:32 PM
 */

namespace dokuwiki\Action;

Andreas Gohr's avatar
Andreas Gohr committed
/**
 * Class Show
 *
 * The default action of showing a page
 *
 * @package dokuwiki\Action
 */
class Show extends AbstractAction {

    /** @inheritdoc */
    public function minimumPermission() {
    /** @inheritdoc */
    public function preProcess() {
        global $ID;
        unlock($ID);
    }

Andreas Gohr's avatar
Andreas Gohr committed
    /** @inheritdoc */
    public function tplContent() {
        html_show();
    }

}