aboutsummaryrefslogtreecommitdiff
path: root/appinfo/app.php
blob: b3c2b4686846846f1e1293ad37b801c30fb441a9 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
<?php
//OCP\App::registerAdmin( 'apptemplate', 'settings' );

OCP\App::addNavigationEntry(
    array( 
        'id' => 'grauphel',
        'order' => 2342,
        'href' => \OCP\Util::linkToRoute('grauphel.gui.index'),
        'icon' => OCP\Util::imagePath('grauphel', 'notes.png'),
        'name' => 'Tomboy notes'
    )
);
?>