nextcloud/apps/tasks/appinfo/app.php

17 lines
470 B
PHP
Raw Normal View History

2011-09-12 23:28:28 +04:00
<?php
$l=new OC_L10N('tasks');
OC::$CLASSPATH['OC_Calendar_Calendar'] = 'apps/calendar/lib/calendar.php';
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')));