xref: /dokuwiki/inc/Menu/Item/Admin.php (revision 3e2fa388693f117b05e78c833043887bdae5578b)
1<?php
2
3namespace dokuwiki\Menu\Item;
4
5class Admin extends AbstractItem {
6
7    /** @inheritdoc */
8    public function __construct() {
9        global $INFO;
10        parent::__construct();
11
12        $this->category = 'user';
13
14        if(!$INFO['ismanager']) {
15            throw new \RuntimeException("admin is for managers only");
16        }
17    }
18
19}
20