2011-09-22 20:09:03 +00:00
|
|
|
<?php
|
|
|
|
/**
|
|
|
|
* Copyright (c) 2011 Bart Visscher <bartv@thisnet.nl>
|
|
|
|
* This file is licensed under the Affero General Public License version 3 or
|
|
|
|
* later.
|
|
|
|
* See the COPYING-README file.
|
|
|
|
*/
|
|
|
|
require_once('../../../lib/base.php');
|
|
|
|
|
|
|
|
$l10n = new OC_L10N('calendar');
|
|
|
|
|
2011-12-22 15:31:01 +00:00
|
|
|
OC_JSON::checkLoggedIn();
|
2011-09-30 21:05:10 +00:00
|
|
|
OC_JSON::checkAppEnabled('calendar');
|
2011-09-22 20:09:03 +00:00
|
|
|
|
|
|
|
$id = $_POST['id'];
|
2011-12-18 21:58:20 +00:00
|
|
|
$event_object = OC_Calendar_App::getEventObject($id);
|
2011-09-22 20:09:03 +00:00
|
|
|
$result = OC_Calendar_Object::delete($id);
|
2011-09-23 20:22:59 +00:00
|
|
|
OC_JSON::success();
|
2011-09-22 20:09:03 +00:00
|
|
|
?>
|