xref: /dokuwiki/inc/Menu/Item/Revert.php (revision 368ce258641a4e8fae6b2e49c89f173d7e3ada69)
193b8c351SAndreas Gohr<?php
293b8c351SAndreas Gohr
393b8c351SAndreas Gohrnamespace dokuwiki\Menu\Item;
493b8c351SAndreas Gohr
5*368ce258SAndreas Gohr/**
6*368ce258SAndreas Gohr * Class Revert
7*368ce258SAndreas Gohr *
8*368ce258SAndreas Gohr * Quick revert to the currently shown page revision
9*368ce258SAndreas Gohr */
1093b8c351SAndreas Gohrclass Revert extends AbstractItem {
1193b8c351SAndreas Gohr
1293b8c351SAndreas Gohr    /** @inheritdoc */
1393b8c351SAndreas Gohr    public function __construct() {
1493b8c351SAndreas Gohr        global $REV;
1593b8c351SAndreas Gohr        global $INFO;
1693b8c351SAndreas Gohr        parent::__construct();
1793b8c351SAndreas Gohr
1893b8c351SAndreas Gohr        if(!$INFO['ismanager'] || !$REV || !$INFO['writable']) {
1993b8c351SAndreas Gohr            throw new \RuntimeException('revert not available');
2093b8c351SAndreas Gohr        }
2193b8c351SAndreas Gohr        $this->params['rev'] = $REV;
2293b8c351SAndreas Gohr        $this->params['sectok'] = getSecurityToken();
23c2b9771aSAndreas Gohr        $this->svg = DOKU_INC . 'lib/images/menu/06-revert_replay.svg';
2493b8c351SAndreas Gohr    }
2593b8c351SAndreas Gohr
2693b8c351SAndreas Gohr}
27