36 lines
1.3 KiB
PHP
36 lines
1.3 KiB
PHP
<?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. *
|
|
*************************************************/
|
|
|
|
require_once ('../../lib/base.php');
|
|
OC_Util::checkLoggedIn();
|
|
OC_Util::checkAppEnabled('tasks');
|
|
|
|
$calendars = OC_Calendar_Calendar::allCalendars(OC_User::getUser(), true);
|
|
if( count($calendars) == 0 ) {
|
|
header('Location: ' . OC_Helper::linkTo('calendar', 'index.php'));
|
|
exit;
|
|
}
|
|
|
|
OC_Util::addScript('3rdparty/timepicker', 'jquery.ui.timepicker');
|
|
OC_Util::addStyle('3rdparty/timepicker', 'jquery.ui.timepicker');
|
|
OC_UTIL::addScript('tasks', 'tasks');
|
|
OC_UTIL::addStyle('tasks', 'style');
|
|
OC_Util::addScript('contacts','jquery.multi-autocomplete');
|
|
OC_Util::addScript('','oc-vcategories');
|
|
OC_APP::setActiveNavigationEntry('tasks_index');
|
|
|
|
$categories = OC_Calendar_App::getCategoryOptions();
|
|
$l10n = new OC_L10N('tasks');
|
|
$priority_options = OC_Task_App::getPriorityOptions();
|
|
$output = new OC_Template('tasks', 'tasks', 'user');
|
|
$output->assign('priority_options', $priority_options);
|
|
$output->assign('categories', $categories);
|
|
$output -> printPage();
|