2011-09-12 23:28:28 +04:00
|
|
|
<?php
|
|
|
|
$l=new OC_L10N('tasks');
|
|
|
|
OC::$CLASSPATH['OC_Calendar_Calendar'] = 'apps/calendar/lib/calendar.php';
|
2012-02-22 23:11:38 +04:00
|
|
|
OC::$CLASSPATH['OC_Task_App'] = 'apps/tasks/lib/app.php';
|
2011-09-12 23:28:28 +04:00
|
|
|
|
|
|
|
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' ),
|
2012-02-22 16:32:04 +04:00
|
|
|
'icon' => OC_Helper::imagePath( 'tasks', 'icon.png' ),
|
2011-09-12 23:28:28 +04:00
|
|
|
'name' => $l->t('Tasks')));
|