193b8c351SAndreas Gohr<?php 293b8c351SAndreas Gohr 393b8c351SAndreas Gohrnamespace dokuwiki\Menu\Item; 493b8c351SAndreas Gohr 5368ce258SAndreas Gohr/** 6368ce258SAndreas Gohr * Class MediaManager 7368ce258SAndreas Gohr * 8368ce258SAndreas Gohr * Opens the current image in the media manager. Used on image detail view. 9368ce258SAndreas Gohr */ 1033b91513SAndreas Gohrclass MediaManager extends AbstractItem 1133b91513SAndreas Gohr{ 1293b8c351SAndreas Gohr /** @inheritdoc */ 1333b91513SAndreas Gohr public function __construct() 1433b91513SAndreas Gohr { 158c51da59SAndreas Gohr global $IMG; 1693b8c351SAndreas Gohr parent::__construct(); 1793b8c351SAndreas Gohr 1893b8c351SAndreas Gohr $imgNS = getNS($IMG); 1993b8c351SAndreas Gohr $authNS = auth_quickaclcheck("$imgNS:*"); 2093b8c351SAndreas Gohr if ($authNS < AUTH_UPLOAD) { 2193b8c351SAndreas Gohr throw new \RuntimeException("media manager link only with upload permissions"); 2293b8c351SAndreas Gohr } 234bb2fc4aSAndreas Gohr 24*e44b94a4SAndreas Gohr $this->svg = DOKU_INC . 'lib/images/menu/11-mediamanager_folder-image.svg'; 254887c154SAndreas Gohr $this->type = 'mediaManager'; 2633b91513SAndreas Gohr $this->params = ['ns' => $imgNS, 'image' => $IMG, 'do' => 'media']; 2793b8c351SAndreas Gohr } 2893b8c351SAndreas Gohr} 29