Recent.php 341 B

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