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