nextcloud/apps/tasks/ajax/addtask.php

31 lines
1008 B
PHP
Raw Normal View History

2011-09-12 23:28:28 +04:00
<?php
// Init owncloud
require_once('../../../lib/base.php');
2011-10-06 23:21:38 +04:00
OC_JSON::checkLoggedIn();
OC_JSON::checkAppEnabled('tasks');
2011-09-12 23:28:28 +04:00
$cid = $_POST['id'];
$calendar = OC_Calendar_App::getCalendar( $cid );
2011-09-12 23:28:28 +04:00
$errors = OC_Task_App::validateRequest($_POST);
2011-09-14 00:44:15 +04:00
if (!empty($errors)) {
2011-10-06 23:21:38 +04:00
OC_JSON::error(array('data' => array( 'errors' => $errors )));
2011-09-14 00:44:15 +04:00
exit();
}
$vcalendar = OC_Task_App::createVCalendarFromRequest($_POST);
2011-09-12 23:28:28 +04:00
$id = OC_Calendar_Object::add($cid, $vcalendar->serialize());
$priority_options = OC_Task_App::getPriorityOptions();
2011-09-12 23:28:28 +04:00
$tmpl = new OC_Template('tasks','part.details');
2011-09-14 00:44:15 +04:00
$tmpl->assign('priority_options', $priority_options);
$tmpl->assign('details',$vcalendar->VTODO);
2011-09-12 23:28:28 +04:00
$tmpl->assign('id',$id);
$page = $tmpl->fetchPage();
$user_timezone = OC_Preferences::getValue(OC_USER::getUser(), 'calendar', 'timezone', date_default_timezone_get());
$task = OC_Task_App::arrayForJSON($id, $vcalendar->VTODO, $user_timezone);
OC_JSON::success(array('data' => array( 'id' => $id, 'page' => $page, 'task' => $task )));