blob: 3f0cc481e23d4c29d0948e0a0af3fb53f006e487 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
|
<?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);
}
}
|