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