nextcloud/apps/calendar/ajax/event/new.php

25 lines
621 B
PHP
Raw Normal View History

<?php
/**
* Copyright (c) 2011 Georg Ehrke <ownclouddev at georgswebsite dot de>
* This file is licensed under the Affero General Public License version 3 or
* later.
* See the COPYING-README file.
*/
2012-05-03 14:23:29 +04:00
OCP\JSON::checkLoggedIn();
OCP\JSON::checkAppEnabled('calendar');
2012-07-20 22:12:36 +04:00
OCP\JSON::callCheck();
$errarr = OC_Calendar_Object::validateRequest($_POST);
if($errarr){
//show validate errors
2012-05-03 14:23:29 +04:00
OCP\JSON::error($errarr);
exit;
}else{
$cal = $_POST['calendar'];
$vcalendar = OC_Calendar_Object::createVCalendarFromRequest($_POST);
$result = OC_Calendar_Object::add($cal, $vcalendar->serialize());
2012-05-03 14:23:29 +04:00
OCP\JSON::success();
2012-06-16 11:48:07 +04:00
}