Browse Source

add app to menu, fix #3

pull/29/head
Jan-Christoph Borchardt 9 years ago
parent
commit
948e866408
  1. 34
      appinfo/app.php

34
appinfo/app.php

@ -0,0 +1,34 @@
<?php
/**
* @author Jan-Christoph Borchardt, http://jancborchardt.net
*
* @license GNU AGPL version 3 or any later version
*
* This program is free software: you can redistribute it and/or modify
* it under the terms of the GNU Affero General Public License as
* published by the Free Software Foundation, either version 3 of the
* License, or (at your option) any later version.
*
* This program 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 program. If not, see <http://www.gnu.org/licenses/>.
*
*/
$l = \OC::$server->getL10N('spreed');
$g = \OC::$server->getURLGenerator();
\OC::$server->getNavigationManager()->add(
[
'id' => 'spreed',
'order' => 3,
'href' => $g->linkToRoute( 'spreed.page.index' ),
'icon' => $g->imagePath( 'spreed', 'app.svg' ),
'name' => $l->t('Calls'),
]
);
Loading…
Cancel
Save