Revisions.php 394 B

123456789101112131415161718192021
  1. <?php
  2. namespace dokuwiki\Menu\Item;
  3. /**
  4. * Class Revisions
  5. *
  6. * Access the old revisions of the current page
  7. */
  8. class Revisions extends AbstractItem {
  9. /** @inheritdoc */
  10. public function __construct() {
  11. parent::__construct();
  12. $this->accesskey = 'o';
  13. $this->type = 'revs';
  14. $this->svg = DOKU_INC . 'lib/images/menu/07-revisions_history.svg';
  15. }
  16. }