aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/inc/Action/Recent.php
blob: 203c91d814c301f93dc71e83b484b566c03a61d1 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
<?php

namespace dokuwiki\Action;

use dokuwiki\Ui;

/**
 * Class Recent
 *
 * The recent changes view
 *
 * @package dokuwiki\Action
 */
class Recent extends AbstractAction
{
    /** @var string what type of changes to show */
    protected $showType = 'both';

    /** @inheritdoc */
    public function minimumPermission()
    {
        return AUTH_NONE;
    }

    /** @inheritdoc */
    public function preProcess()
    {
        global $INPUT;
        $show_changes = $INPUT->str('show_changes');
        if (!empty($show_changes)) {
            set_doku_pref('show_changes', $show_changes);
            $this->showType = $show_changes;
        } else {
            $this->showType = get_doku_pref('show_changes', 'both');
        }
    }

    /** @inheritdoc */
    public function tplContent()
    {
        global $INPUT;
        (new Ui\Recent($INPUT->extract('first')->int('first'), $this->showType))->show();
    }

}