xref: /dokuwiki/inc/Menu/Item/Recent.php (revision 8c51da59a9481debdfd66270530c691b0411cf9c)
1<?php
2
3namespace dokuwiki\Menu\Item;
4
5class Recent extends AbstractItem {
6
7    /** @inheritdoc */
8    public function __construct() {
9        parent::__construct();
10
11        $this->accesskey = 'r';
12        $this->svg = DOKU_INC . 'lib/images/menu/calendar-clock.svg';
13    }
14
15}
16