Move navigation to appinfo

Signed-off-by: Thomas Citharel <tcit@tcit.fr>
This commit is contained in:
Thomas Citharel 2020-02-10 22:32:56 +01:00
parent 32e34bae4a
commit 61bbb79550
No known key found for this signature in database
GPG Key ID: A061B9DDE0CA0773
3 changed files with 9 additions and 46 deletions

View File

@ -1,26 +0,0 @@
<?php
declare(strict_types=1);
/**
* Calendar App
*
* @author Georg Ehrke
* @copyright 2019 Georg Ehrke <oc.list@georgehrke.com>
*
* This library is free software; you can redistribute it and/or
* modify it under the terms of the GNU AFFERO GENERAL PUBLIC LICENSE
* License as published by the Free Software Foundation; either
* version 3 of the License, or any later version.
*
* This library is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU AFFERO GENERAL PUBLIC LICENSE for more details.
*
* You should have received a copy of the GNU Affero General Public
* License along with this library. If not, see <http://www.gnu.org/licenses/>.
*
*/
namespace OCA\Calendar\AppInfo;
$app = new Application();
$app->registerNavigation();

View File

@ -39,4 +39,13 @@
<step>OCA\Calendar\RepairSteps\CurrentViewNameRepairStep</step>
</post-migration>
</repair-steps>
<navigations>
<navigation>
<id>calendar</id>
<name>Calendar</name>
<route>calendar.view.index</route>
<icon>calendar.svg</icon>
<order>5</order>
</navigation>
</navigations>
</info>

View File

@ -37,24 +37,4 @@ class Application extends App {
public function __construct(array $params=[]) {
parent::__construct('calendar', $params);
}
/**
* register navigation entry
*/
public function registerNavigation():void {
$appName = $this->getContainer()->getAppName();
$server = $this->getContainer()->getServer();
$server->getNavigationManager()->add(static function() use ($appName, $server) {
return [
'id' => $appName,
'order' => 5,
'href' => $server->getURLGenerator()
->linkToRoute('calendar.view.index'),
'icon' => $server->getURLGenerator()
->imagePath($appName, 'calendar.svg'),
'name' => $server->getL10N($appName)->t('Calendar'),
];
});
}
}