Remove unneeded constructor parameter
[grauphel.git] / appinfo / app.php
1 <?php
2 \OC::$server->getNavigationManager()->add(
3     array( 
4         'id' => 'grauphel',
5         'order' => 2342,
6         'href' => \OCP\Util::linkToRoute('grauphel.gui.index'),
7         'icon' => \OCP\Util::imagePath('grauphel', 'app.svg'),
8         'name' => 'Tomboy notes'
9     )
10 );
11
12 \OC::$server->getSearch()->registerProvider(
13     'OCA\Grauphel\Search\Provider', array('apps' => array('grauphel'))
14 );
15
16 \OCP\Util::addscript('grauphel', 'loader');
17 ?>