Welcome to mirror list, hosted at ThFree Co, Russian Federation.

delete.php « event « ajax « calendar « apps - github.com/nextcloud/server.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 3b726651641151008d24a2f0c8813c08a6455599 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
<?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.
 */
 

OC_JSON::checkLoggedIn();
OC_JSON::checkAppEnabled('calendar');

$id = $_POST['id'];
$access = OC_Calendar_App::getaccess($id, OC_Calendar_App::EVENT);
if($access != 'owner' && $access != 'rw'){
	OC_JSON::error(array('message'=>'permission denied'));
	exit;
}
$result = OC_Calendar_Object::delete($id);
OC_JSON::success();