xref: /dokuwiki/inc/Action/Revisions.php (revision e937d00471b8194e1dc5cf14501b68d8840212a3)
1<?php
2
3namespace dokuwiki\Action;
4
5use dokuwiki\Ui;
6
7/**
8 * Class Revisions
9 *
10 * Show the list of old revisions of the current page
11 *
12 * @package dokuwiki\Action
13 */
14class Revisions extends AbstractAction
15{
16    /** @inheritdoc */
17    public function minimumPermission()
18    {
19        return AUTH_READ;
20    }
21
22    /** @inheritdoc */
23    public function tplContent()
24    {
25        global $INFO, $INPUT;
26        (new Ui\PageRevisions($INFO['id']))->show($INPUT->int('first'));
27    }
28}
29