app.php 383 B

123456789101112
  1. <?php
  2. $l=new OC_L10N('tasks');
  3. OC::$CLASSPATH['OC_Calendar_Calendar'] = 'apps/calendar/lib/calendar.php';
  4. OC::$CLASSPATH['OC_Task_App'] = 'apps/tasks/lib/app.php';
  5. OCP\App::addNavigationEntry( array(
  6. 'id' => 'tasks_index',
  7. 'order' => 11,
  8. 'href' => OCP\Util::linkTo( 'tasks', 'index.php' ),
  9. 'icon' => OCP\Util::imagePath( 'tasks', 'icon.png' ),
  10. 'name' => $l->t('Tasks')));