Files
mr-legend_wiki/lib/tpl/bootstrap3/compat/inc/Menu/Item/Media.php
T
2024-07-08 03:32:47 +09:00

22 lines
373 B
PHP

<?php
namespace dokuwiki\Menu\Item;
/**
* Class Media
*
* Opens the media manager
*/
class Media extends AbstractItem {
/** @inheritdoc */
public function __construct() {
global $ID;
parent::__construct();
$this->svg = DOKU_INC_COMPAT . 'lib/images/menu/folder-multiple-image.svg';
$this->params['ns'] = getNS($ID);
}
}