xref: /dokuwiki/inc/Menu/Item/Recent.php (revision b3680c4f047962121d05cbec69bf0fbc8d91f664)
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