nextcloud/apps/tasks/index.php

34 lines
1.3 KiB
PHP
Raw Normal View History

2011-09-12 23:28:28 +04:00
<?php
/*************************************************
* ownCloud - Tasks Plugin *
* *
* (c) Copyright 2011 Bart Visscher *
* This file is licensed under the Affero General *
* Public License version 3 or later. *
* See the COPYING-README file. *
*************************************************/
2012-05-04 19:19:25 +04:00
OCP\User::checkLoggedIn();
OCP\App::checkAppEnabled('tasks');
2011-09-12 23:28:28 +04:00
2012-05-04 19:19:25 +04:00
$calendars = OC_Calendar_Calendar::allCalendars(OCP\User::getUser(), true);
if( count($calendars) == 0 ) {
2012-05-04 22:20:37 +04:00
header('Location: ' . OCP\Util::linkTo('calendar', 'index.php'));
2011-09-12 23:28:28 +04:00
exit;
}
2012-05-04 19:19:25 +04:00
OCP\Util::addScript('3rdparty/timepicker', 'jquery.ui.timepicker');
OCP\Util::addStyle('3rdparty/timepicker', 'jquery.ui.timepicker');
OCP\Util::addScript('tasks', 'tasks');
OCP\Util::addStyle('tasks', 'style');
2012-07-21 02:44:34 +04:00
OCP\Util::addScript('contacts', 'jquery.multi-autocomplete');
OCP\Util::addScript('', 'oc-vcategories');
2012-05-04 19:19:25 +04:00
OCP\App::setActiveNavigationEntry('tasks_index');
2011-12-10 00:41:21 +04:00
$categories = OC_Calendar_App::getCategoryOptions();
$priority_options = OC_Task_App::getPriorityOptions();
2012-05-07 01:00:36 +04:00
$output = new OCP\Template('tasks', 'tasks', 'user');
2011-12-10 00:41:21 +04:00
$output->assign('priority_options', $priority_options);
$output->assign('categories', $categories);
2011-09-12 23:28:28 +04:00
$output -> printPage();