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

Media::__construct()   A

Complexity

Conditions 1
Paths 1

Size

Total Lines 7
Code Lines 5

Duplication

Lines 0
Ratio 0 %

Importance

Changes 0
Metric Value
cc 1
eloc 5
nc 1
nop 0
dl 0
loc 7
rs 9.4285
c 0
b 0
f 0
1
<?php
2
3
namespace dokuwiki\Menu\Item;
4
5
/**
6
 * Class Media
7
 *
8
 * Opens the media manager
9
 */
10
class Media extends AbstractItem {
11
12
    /** @inheritdoc */
13
    public function __construct() {
14
        global $ID;
15
        parent::__construct();
16
17
        $this->svg = DOKU_INC . 'lib/images/menu/folder-multiple-image.svg';
18
        $this->params['ns'] = getNS($ID);
19
    }
20
21
}
22