diff options
Diffstat (limited to 'apps/tasks/appinfo/app.php')
-rw-r--r-- | apps/tasks/appinfo/app.php | 15 |
1 files changed, 15 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'))); |