aboutsummaryrefslogtreecommitdiff
path: root/appinfo/app.php
diff options
context:
space:
mode:
authorChristian Weiske <cweiske@cweiske.de>2014-08-14 18:41:34 +0200
committerChristian Weiske <cweiske@cweiske.de>2014-08-14 18:41:34 +0200
commit3780cf15a59c48b3d71e8ec27e3bdacd8a119460 (patch)
tree84498c8ebdb29f212ab1b37c1d8b911eb6a237e9 /appinfo/app.php
downloadgrauphel-3780cf15a59c48b3d71e8ec27e3bdacd8a119460.tar.gz
grauphel-3780cf15a59c48b3d71e8ec27e3bdacd8a119460.zip
wip
Diffstat (limited to 'appinfo/app.php')
-rwxr-xr-xappinfo/app.php13
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'
+));