diff options
| author | Christian Weiske <cweiske@cweiske.de> | 2014-08-20 06:27:58 +0200 |
|---|---|---|
| committer | Christian Weiske <cweiske@cweiske.de> | 2014-08-20 06:27:58 +0200 |
| commit | 1d7387a458d893664e2537ec811bc053d95600b7 (patch) | |
| tree | 27ecb02bf62f8378c422a5f2b6df419b40cbacf5 /appinfo/app.php | |
| parent | db2f09d46ce2f3a46be1b6f6e031492966242025 (diff) | |
| download | grauphel-1d7387a458d893664e2537ec811bc053d95600b7.tar.gz grauphel-1d7387a458d893664e2537ec811bc053d95600b7.zip | |
sync could work if php would not crash
Diffstat (limited to 'appinfo/app.php')
| -rwxr-xr-x | appinfo/app.php | 20 |
1 files changed, 10 insertions, 10 deletions
diff --git a/appinfo/app.php b/appinfo/app.php index 3e319df..3da4f00 100755 --- a/appinfo/app.php +++ b/appinfo/app.php @@ -1,13 +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' -)); +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' + ) +); +?> |
