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