From: Florian Pritz Date: Thu, 22 Sep 2011 20:09:03 +0000 (+0200) Subject: apps/calendar: add delete button to edit event form X-Git-Tag: v3.0~161^2~14 X-Git-Url: https://source.dussan.org/?a=commitdiff_plain;h=b0e23a16340428af2bae3330bddbf8988d01ce00;p=nextcloud-server.git apps/calendar: add delete button to edit event form Signed-off-by: Florian Pritz --- diff --git a/apps/calendar/ajax/deleteevent.php b/apps/calendar/ajax/deleteevent.php new file mode 100644 index 00000000000..08a0e1a1e26 --- /dev/null +++ b/apps/calendar/ajax/deleteevent.php @@ -0,0 +1,30 @@ + + * 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'); + +if(!OC_USER::isLoggedIn()) { + die(''); +} + +$id = $_POST['id']; +$data = OC_Calendar_Object::find($id); +if (!$data) +{ + echo json_encode(array('status'=>'error')); + exit; +} +$calendar = OC_Calendar_Calendar::findCalendar($data['calendarid']); +if($calendar['userid'] != OC_User::getUser()){ + echo json_encode(array('status'=>'error')); + exit; +} +$result = OC_Calendar_Object::delete($id); +echo json_encode(array('status' => 'success')); +?> diff --git a/apps/calendar/js/calendar.js b/apps/calendar/js/calendar.js index 1a8bc499574..61a1945c343 100644 --- a/apps/calendar/js/calendar.js +++ b/apps/calendar/js/calendar.js @@ -300,6 +300,19 @@ Calendar={ $('#dialog_holder').load(oc_webroot + '/apps/calendar/ajax/editeventform.php?id=' + id, Calendar.UI.startEventDialog); } }, + submitDeleteEventForm:function(url){ + var post = $( "#event_form" ).serialize(); + $("#errorbox").html(""); + $.post(url, post, function(data){ + if(data.status == 'success'){ + $('#event').dialog('destroy').remove(); + Calendar.UI.loadEvents(); + } else { + $("#errorbox").html("Deletion failed"); + } + + }, "json"); + }, validateEventForm:function(url){ var post = $( "#event_form" ).serialize(); $("#errorbox").html(""); diff --git a/apps/calendar/templates/part.editevent.php b/apps/calendar/templates/part.editevent.php index 859828216b8..be637aeae55 100644 --- a/apps/calendar/templates/part.editevent.php +++ b/apps/calendar/templates/part.editevent.php @@ -5,6 +5,7 @@
" onclick="Calendar.UI.validateEventForm('ajax/editevent.php');"> + " onclick="Calendar.UI.submitDeleteEventForm('ajax/deleteevent.php');">