xref: /dokuwiki/inc/Menu/Item/Admin.php (revision 5aa905e95e0f4ee1de1d93da15dbd388e985c134)
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        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