xref: /dokuwiki/inc/Action/Source.php (revision d39e9bea24a7ba90507d3480f95066fdbe3699a8)
1<?php
2
3namespace dokuwiki\Action;
4
5/**
6 * Class Source
7 *
8 * Show the source of a page
9 *
10 * @package dokuwiki\Action
11 */
12class Source extends AbstractAction {
13
14    /** @inheritdoc */
15    public function minimumPermission() {
16        return AUTH_READ;
17    }
18
19    /** @inheritdoc */
20    public function tplContent() {
21        html_edit(); // FIXME is this correct? Should we split it off completely?
22    }
23
24}
25