1<?php 2 3namespace dokuwiki\Menu\Item; 4 5class Revisions extends AbstractItem { 6 7 /** @inheritdoc */ 8 public function __construct() { 9 parent::__construct(); 10 11 $this->type = 'revs'; 12 $this->params['do'] = 'revs'; 13 $this->svg = DOKU_INC . 'lib/images/menu/07-revisions_history.svg'; 14 } 15 16} 17