dockerwiki/content/inc/Menu/Item/Media.php

22 lines
366 B
PHP
Raw Permalink Normal View History

2021-10-26 13:02:53 +02:00
<?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 . 'lib/images/menu/folder-multiple-image.svg';
$this->params['ns'] = getNS($ID);
}
}