xref: /dokuwiki/inc/Menu/Item/Recent.php (revision 2f7a5efd5a98cf50fc525d7321c3568e51fb8319)
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->category = 'site';
12        $this->accesskey = 'r';
13        $this->svg = DOKU_INC . 'lib/images/menu/calendar-clock.svg';
14    }
15
16}
17