setImage( Icon::create( 'files', 'navigation', ['title' => _('Alle Dateien')] ) ); } /** * Initialise the subnavigation of this item. This method * is called once before the first item is added or removed. */ public function initSubNavigation() { parent::initSubNavigation(); $this->addSubNavigation( 'overview', new Navigation(_('Übersicht'), 'dispatch.php/files/overview') ); $this->addSubNavigation( 'my_files', new Navigation(_('Persönliche Dateien'), 'dispatch.php/files/index') ); $this->addSubNavigation( 'search', new Navigation(_('Suche'), 'dispatch.php/files_dashboard/search') ); } }