xref: /dokuwiki/inc/Menu/Item/Revisions.php (revision c6daab83c8d37bb6c8937ed99d8a9261b18cc1e1)
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    /** @inheritdoc */
13    public function __construct() {
14        parent::__construct();
15
16        $this->accesskey = 'o';
17        $this->type = 'revs';
18        $this->svg = DOKU_INC . 'lib/images/menu/07-revisions_history.svg';
19    }
20
21}
22