xref: /dokuwiki/inc/Menu/Item/Recent.php (revision 5983e241c3fbc8b211747041c6d129f0c4c94d3e)
1<?php
2
3namespace dokuwiki\Menu\Item;
4
5/**
6 * Class Recent
7 *
8 * Show the site wide recent changes
9 */
10class Recent extends AbstractItem
11{
12
13    /** @inheritdoc */
14    public function __construct()
15    {
16        parent::__construct();
17
18        $this->accesskey = 'r';
19        $this->svg = DOKU_INC . 'lib/images/menu/calendar-clock.svg';
20    }
21
22}
23