Completed
Push — master ( 9b78f7...5dcb4f )
by Andreas
08:15 queued 03:39
created

Admin   A

Complexity

Total Complexity 2

Size/Duplication

Total Lines 15
Duplicated Lines 0 %

Coupling/Cohesion

Components 0
Dependencies 1

Importance

Changes 0
Metric Value
dl 0
loc 15
rs 10
c 0
b 0
f 0
wmc 2
lcom 0
cbo 1

1 Method

Rating   Name   Duplication   Size   Complexity  
A __construct() 0 10 2
1
<?php
2
3
namespace dokuwiki\Menu\Item;
4
5
/**
6
 * Class Admin
7
 *
8
 * Opens the Admin screen. Only shown to managers or above
9
 */
10
class Admin extends AbstractItem {
11
12
    /** @inheritdoc */
13
    public function __construct() {
14
        global $INFO;
15
        parent::__construct();
16
17
        $this->svg = DOKU_INC . 'lib/images/menu/settings.svg';
18
19
        if(!$INFO['ismanager']) {
20
            throw new \RuntimeException("admin is for managers only");
21
        }
22
    }
23
24
}
25