1<?php 2 3namespace dokuwiki\Menu\Item; 4 5/** 6 * Class Recent 7 * 8 * Show the site wide recent changes 9 */ 10class Recent extends AbstractItem { 11 12 /** @inheritdoc */ 13 public function __construct() { 14 parent::__construct(); 15 16 $this->accesskey = 'r'; 17 $this->svg = DOKU_INC_COMPAT . 'lib/images/menu/calendar-clock.svg'; 18 } 19 20} 21