xref: /dokuwiki/inc/Menu/Item/Media.php (revision 2f7a5efd5a98cf50fc525d7321c3568e51fb8319)
193b8c351SAndreas Gohr<?php
293b8c351SAndreas Gohr
393b8c351SAndreas Gohrnamespace dokuwiki\Menu\Item;
493b8c351SAndreas Gohr
593b8c351SAndreas Gohrclass Media extends AbstractItem {
693b8c351SAndreas Gohr
7*2f7a5efdSAndreas Gohr    protected $svg = DOKU_INC . 'lib/images/menu/folder-multiple-image.svg';
8*2f7a5efdSAndreas Gohr
993b8c351SAndreas Gohr    /** @inheritdoc */
1093b8c351SAndreas Gohr    public function __construct() {
1193b8c351SAndreas Gohr        global $ID;
1293b8c351SAndreas Gohr        parent::__construct();
1393b8c351SAndreas Gohr
1493b8c351SAndreas Gohr        $this->category = 'site';
1593b8c351SAndreas Gohr        $params['ns'] = getNS($ID);
1693b8c351SAndreas Gohr    }
1793b8c351SAndreas Gohr
1893b8c351SAndreas Gohr}
19