xref: /dokuwiki/inc/Menu/Item/Recent.php (revision 2f7a5efd5a98cf50fc525d7321c3568e51fb8319)
193b8c351SAndreas Gohr<?php
293b8c351SAndreas Gohr
393b8c351SAndreas Gohrnamespace dokuwiki\Menu\Item;
493b8c351SAndreas Gohr
593b8c351SAndreas Gohrclass Recent extends AbstractItem {
693b8c351SAndreas Gohr
793b8c351SAndreas Gohr    /** @inheritdoc */
893b8c351SAndreas Gohr    public function __construct() {
993b8c351SAndreas Gohr        parent::__construct();
1093b8c351SAndreas Gohr
1193b8c351SAndreas Gohr        $this->category = 'site';
1293b8c351SAndreas Gohr        $this->accesskey = 'r';
13*2f7a5efdSAndreas Gohr        $this->svg = DOKU_INC . 'lib/images/menu/calendar-clock.svg';
1493b8c351SAndreas Gohr    }
1593b8c351SAndreas Gohr
1693b8c351SAndreas Gohr}
17