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