You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 

21 lines
343 B

  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. {
  10. /** @inheritdoc */
  11. public function __construct()
  12. {
  13. parent::__construct();
  14. $this->accesskey = 'r';
  15. $this->svg = DOKU_INC . 'lib/images/menu/calendar-clock.svg';
  16. }
  17. }