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