xref: /dokuwiki/inc/Action/Source.php (revision 85d3e2b76a3be305f2ccbc6d5a6d309ab89c675a)
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