nextcloud/apps/tasks/index.php

30 lines
1.0 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. *
*************************************************/
require_once ('../../lib/base.php');
2011-10-06 23:21:38 +04:00
OC_Util::checkLoggedIn();
OC_Util::checkAppEnabled('tasks');
2011-09-12 23:28:28 +04:00
$calendars = OC_Calendar_Calendar::allCalendars(OC_User::getUser(), true);
if( count($calendars) == 0 ) {
header('Location: ' . OC_Helper::linkTo('calendar', 'index.php'));
2011-09-12 23:28:28 +04:00
exit;
}
OC_UTIL::addScript('tasks', 'tasks');
OC_UTIL::addStyle('tasks', 'style');
OC_APP::setActiveNavigationEntry('tasks_index');
2011-12-10 00:41:21 +04:00
$l10n = new OC_L10N('tasks');
$priority_options = OC_Task_App::getPriorityOptions();
2011-09-12 23:28:28 +04:00
$output = new OC_Template('tasks', 'tasks', 'user');
2011-12-10 00:41:21 +04:00
$output->assign('priority_options', $priority_options);
2011-09-12 23:28:28 +04:00
$output -> printPage();