Conditions | 4 |
Paths | 2 |
Total Lines | 12 |
Code Lines | 9 |
Lines | 0 |
Ratio | 0 % |
Changes | 0 |
1 | <?php |
||
13 | public function __construct() { |
||
14 | global $REV; |
||
15 | global $INFO; |
||
16 | parent::__construct(); |
||
17 | |||
18 | if(!$INFO['ismanager'] || !$REV || !$INFO['writable']) { |
||
19 | throw new \RuntimeException('revert not available'); |
||
20 | } |
||
21 | $this->params['rev'] = $REV; |
||
22 | $this->params['sectok'] = getSecurityToken(); |
||
23 | $this->svg = DOKU_INC . 'lib/images/menu/06-revert_replay.svg'; |
||
24 | } |
||
25 | |||
27 |