2012-02-20 14:26:22 +04: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');
|
|
|
|
|
|
|
|
OC_JSON::checkLoggedIn();
|
|
|
|
OC_JSON::checkAppEnabled('calendar');
|
|
|
|
|
|
|
|
$id = $_POST['id'];
|
2012-04-08 06:37:26 +04:00
|
|
|
$access = OC_Calendar_App::getaccess($id, OC_Calendar_App::EVENT);
|
|
|
|
if($access != 'owner' && $access != 'rw'){
|
|
|
|
OC_JSON::error(array('message'=>'permission denied'));
|
|
|
|
exit;
|
|
|
|
}
|
2012-02-20 14:26:22 +04:00
|
|
|
$result = OC_Calendar_Object::delete($id);
|
2012-02-20 14:26:22 +04:00
|
|
|
OC_JSON::success();
|