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