xref: /dokuwiki/inc/Menu/Item/Media.php (revision 944e9ba7254387adb60f253b0d8796f2276096b1)
1<?php
2
3namespace dokuwiki\Menu\Item;
4
5use dokuwiki\File\StaticImage;
6
7/**
8 * Class Media
9 *
10 * Opens the media manager
11 */
12class Media extends AbstractItem
13{
14    /** @inheritdoc */
15    public function __construct()
16    {
17        global $ID;
18        parent::__construct();
19
20        $this->svg = StaticImage::path('menu/folder-multiple-image.svg');
21        $this->params['ns'] = getNS($ID);
22    }
23}
24