diff options
| author | Christian Weiske <cweiske@cweiske.de> | 2014-08-14 18:41:34 +0200 |
|---|---|---|
| committer | Christian Weiske <cweiske@cweiske.de> | 2014-08-14 18:41:34 +0200 |
| commit | 3780cf15a59c48b3d71e8ec27e3bdacd8a119460 (patch) | |
| tree | 84498c8ebdb29f212ab1b37c1d8b911eb6a237e9 /appinfo/app.php | |
| download | grauphel-3780cf15a59c48b3d71e8ec27e3bdacd8a119460.tar.gz grauphel-3780cf15a59c48b3d71e8ec27e3bdacd8a119460.zip | |
wip
Diffstat (limited to 'appinfo/app.php')
| -rwxr-xr-x | appinfo/app.php | 13 |
1 files changed, 13 insertions, 0 deletions
diff --git a/appinfo/app.php b/appinfo/app.php new file mode 100755 index 0000000..3e319df --- /dev/null +++ b/appinfo/app.php @@ -0,0 +1,13 @@ +<?php +require_once (__DIR__ . '/../src/grauphel/Autoloader.php'); +grauphel\Autoloader::register(); + +//OCP\App::registerAdmin( 'apptemplate', 'settings' ); + +OCP\App::addNavigationEntry( array( + 'id' => 'grauphel', + 'order' => 2342, + 'href' => OCP\Util::linkTo( 'grauphel', 'index.php' ), + 'icon' => OCP\Util::imagePath( 'grauphel', 'notes.png' ), + 'name' => 'Tomboy notes' +)); |
