]> source.dussan.org Git - nextcloud-server.git/commitdiff
apps/calendar: add delete button to edit event form
authorFlorian Pritz <bluewind@xinu.at>
Thu, 22 Sep 2011 20:09:03 +0000 (22:09 +0200)
committerFlorian Pritz <bluewind@xinu.at>
Sat, 24 Sep 2011 16:41:51 +0000 (18:41 +0200)
Signed-off-by: Florian Pritz <bluewind@xinu.at>
apps/calendar/ajax/deleteevent.php [new file with mode: 0644]
apps/calendar/js/calendar.js
apps/calendar/templates/part.editevent.php

diff --git a/apps/calendar/ajax/deleteevent.php b/apps/calendar/ajax/deleteevent.php
new file mode 100644 (file)
index 0000000..08a0e1a
--- /dev/null
@@ -0,0 +1,30 @@
+<?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');
+
+if(!OC_USER::isLoggedIn()) {
+       die('<script type="text/javascript">document.location = oc_webroot;</script>');
+}
+
+$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'));
+?> 
index 1a8bc4995744c357d8ddad38aad61763985367d1..61a1945c343ac63e6eea430bf0e50f5de834fd01 100644 (file)
@@ -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("");
index 859828216b82ac40abad9fe766c50fa7d96c6f7b..be637aeae550ce20766eaf97c7d0a8691ba09db8 100644 (file)
@@ -5,6 +5,7 @@
        <div style="width: 100%;text-align: center;color: #FF1D1D;" id="errorbox"></div>
        <span id="actions">
                <input type="button" class="submit" style="float: left;" value="<?php echo $l->t("Submit");?>" onclick="Calendar.UI.validateEventForm('ajax/editevent.php');">
+               <input type="button" class="submit" style="float: left;" name="delete" value="<?php echo $l->t("Delete");?>" onclick="Calendar.UI.submitDeleteEventForm('ajax/deleteevent.php');">
        </span>
        </form>
 </div>