193b8c351SAndreas Gohr<?php 293b8c351SAndreas Gohr 393b8c351SAndreas Gohrnamespace dokuwiki\Menu\Item; 493b8c351SAndreas Gohr 5368ce258SAndreas Gohr/** 6368ce258SAndreas Gohr * Class Admin 7368ce258SAndreas Gohr * 8368ce258SAndreas Gohr * Opens the Admin screen. Only shown to managers or above 9368ce258SAndreas Gohr */ 1093b8c351SAndreas Gohrclass Admin extends AbstractItem { 1193b8c351SAndreas Gohr 1293b8c351SAndreas Gohr /** @inheritdoc */ 1393b8c351SAndreas Gohr public function __construct() { 1493b8c351SAndreas Gohr parent::__construct(); 1593b8c351SAndreas Gohr 164bb2fc4aSAndreas Gohr $this->svg = DOKU_INC . 'lib/images/menu/settings.svg'; 1793b8c351SAndreas Gohr } 18*3d90b12cSAndreas Gohr 19*3d90b12cSAndreas Gohr /** @inheritdoc */ 20*3d90b12cSAndreas Gohr public function visibleInContext($ctx) 21*3d90b12cSAndreas Gohr { 22*3d90b12cSAndreas Gohr global $INFO; 23*3d90b12cSAndreas Gohr if(!$INFO['ismanager']) return false; 24*3d90b12cSAndreas Gohr 25*3d90b12cSAndreas Gohr return parent::visibleInContext($ctx); 2693b8c351SAndreas Gohr } 2793b8c351SAndreas Gohr 2893b8c351SAndreas Gohr} 29