diff options
author | Bart Visscher <bartv@thisnet.nl> | 2011-09-12 21:28:28 +0200 |
---|---|---|
committer | Bart Visscher <bartv@thisnet.nl> | 2011-09-17 21:55:06 +0200 |
commit | 78863696b7d2c443f742d23dd94acefe60157779 (patch) | |
tree | 794a87db9ca042d60382d6c6e1d85aafd67a6f45 /apps/tasks/appinfo | |
parent | 8c7aa060884fb3eaa1fe39412eb7622b743478b4 (diff) | |
download | nextcloud-server-78863696b7d2c443f742d23dd94acefe60157779.tar.gz nextcloud-server-78863696b7d2c443f742d23dd94acefe60157779.zip |
First version of tasks app
Diffstat (limited to 'apps/tasks/appinfo')
-rw-r--r-- | apps/tasks/appinfo/app.php | 15 | ||||
-rw-r--r-- | apps/tasks/appinfo/info.xml | 10 |
2 files changed, 25 insertions, 0 deletions
diff --git a/apps/tasks/appinfo/app.php b/apps/tasks/appinfo/app.php new file mode 100644 index 00000000000..8bcc6085ec8 --- /dev/null +++ b/apps/tasks/appinfo/app.php @@ -0,0 +1,15 @@ +<?php +$l=new OC_L10N('tasks'); +OC::$CLASSPATH['OC_Calendar_Calendar'] = 'apps/calendar/lib/calendar.php'; + +OC_App::register( array( + 'order' => 11, + 'id' => 'tasks', + 'name' => 'Tasks' )); + +OC_App::addNavigationEntry( array( + 'id' => 'tasks_index', + 'order' => 11, + 'href' => OC_Helper::linkTo( 'tasks', 'index.php' ), + //'icon' => OC_Helper::imagePath( 'tasks', 'icon.png' ), + 'name' => $l->t('Tasks'))); diff --git a/apps/tasks/appinfo/info.xml b/apps/tasks/appinfo/info.xml new file mode 100644 index 00000000000..21ab9a24762 --- /dev/null +++ b/apps/tasks/appinfo/info.xml @@ -0,0 +1,10 @@ +<?xml version="1.0"?> +<info> + <id>tasks</id> + <name>Tasks</name> + <version>0.1</version> + <licence>AGPL</licence> + <author>Bart Visscher</author> + <require>2</require> + <description>Tasks view from calendar</description> +</info> |