xref: /dokuwiki/inc/Menu/Item/Revisions.php (revision c2b9771a2c4f3934d170bc387b7fd0137cdb2c93)
193b8c351SAndreas Gohr<?php
293b8c351SAndreas Gohr
393b8c351SAndreas Gohrnamespace dokuwiki\Menu\Item;
493b8c351SAndreas Gohr
593b8c351SAndreas Gohrclass Revisions extends AbstractItem {
693b8c351SAndreas Gohr
793b8c351SAndreas Gohr    /** @inheritdoc */
893b8c351SAndreas Gohr    public function __construct() {
993b8c351SAndreas Gohr        parent::__construct();
1093b8c351SAndreas Gohr
1193b8c351SAndreas Gohr        $this->type = 'revs';
1293b8c351SAndreas Gohr        $this->params['do'] = 'revs';
13*c2b9771aSAndreas Gohr        $this->svg = DOKU_INC . 'lib/images/menu/07-revisions_history.svg';
1493b8c351SAndreas Gohr    }
1593b8c351SAndreas Gohr
1693b8c351SAndreas Gohr}
17