Files
mr-legend_wiki/lib/tpl/bootstrap3/compat/inc/Menu/Item/Recent.php
T
2024-07-08 03:32:47 +09:00

21 lines
348 B
PHP

<?php
namespace dokuwiki\Menu\Item;
/**
* Class Recent
*
* Show the site wide recent changes
*/
class Recent extends AbstractItem {
/** @inheritdoc */
public function __construct() {
parent::__construct();
$this->accesskey = 'r';
$this->svg = DOKU_INC_COMPAT . 'lib/images/menu/calendar-clock.svg';
}
}