1<?php
2
3namespace dokuwiki\Menu\Item;
4
5/**
6 * Class Admin
7 *
8 * Opens the Admin screen. Only shown to managers or above
9 */
10class Admin extends AbstractItem {
11
12    /** @inheritdoc */
13    public function __construct() {
14        parent::__construct();
15
16        $this->svg = DOKU_INC_COMPAT . 'lib/images/menu/settings.svg';
17    }
18
19    /** @inheritdoc */
20    public function visibleInContext($ctx)
21    {
22        global $INFO;
23        if(!$INFO['ismanager']) return false;
24
25        return parent::visibleInContext($ctx);
26    }
27
28}
29