1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102
|
<?php
/*
* event_delete.php
*
* Copyright (c) 2001 Michal Szczotka <michal@tuxy.org>
* Licensed under the GNU GPL. For full terms see the file COPYING.
*
* Functions to delete a event.
*
* $Id: event_delete.php,v 1.3 2002/01/23 06:08:00 dahanc Exp $
*/
require_once('calendar_data.php');
require_once('functions.php');
chdir('..');
require_once('../src/validate.php');
require_once('../functions/strings.php');
require_once('../functions/date.php');
require_once('../config/config.php');
require_once('../functions/page_header.php');
require_once('../src/load_prefs.php');
function confirm_deletion()
{
global $calself, $dyear, $dmonth, $dday, $dhour, $dminute, $calendardata, $color, $year, $month, $day;
$tmparray = $calendardata["$dmonth$dday$dyear"]["$dhour$dminute"];
echo " <TABLE BORDER=0 CELLPADDING=2 CELLSPACING=1 BGCOLOR=\"$color[0]\">\n".
" <TR><TH COLSPAN=2 BGCOLOR=\"$color[4]\">\n".
_("Do you really want to delete this event?") . "<br></th>\n".
" <TR><TD ALIGN=RIGHT BGCOLOR=\"$color[4]\">" . _("Date:") . "</TD>\n".
" <TD ALIGN=LEFT BGCOLOR=\"$color[4]\">$dmonth/$dday/$dyear</TD></TR>\n".
" <TR><TD ALIGN=RIGHT BGCOLOR=\"$color[4]\">" . _("Time:") . "</TD>\n".
" <TD ALIGN=LEFT BGCOLOR=\"$color[4]\">$dhour:$dminute</TD></TR>\n".
" <TR><TD ALIGN=RIGHT BGCOLOR=\"$color[4]\">" . _("Title:") . "</TD>\n".
" <TD ALIGN=LEFT BGCOLOR=\"$color[4]\">$tmparray[title]</TD></TR>\n".
" <TR><TD ALIGN=RIGHT BGCOLOR=\"$color[4]\">" . _("Message:") . "</TD>\n".
" <TD ALIGN=LEFT BGCOLOR=\"$color[4]\">$tmparray[message]</TD></TR>\n".
" <TR><TD ALIGN=RIGHT BGCOLOR=\"$color[4]\">\n".
" <FORM NAME=\"delevent\" METHOD=POST ACTION=\"$calself\">\n".
" <INPUT TYPE=HIDDEN NAME=\"dyear\" VALUE=\"$dyear\">\n".
" <INPUT TYPE=HIDDEN NAME=\"dmonth\" VALUE=\"$dmonth\">\n".
" <INPUT TYPE=HIDDEN NAME=\"dday\" VALUE=\"$dday\">\n".
" <INPUT TYPE=HIDDEN NAME=\"year\" VALUE=\"$year\">\n".
" <INPUT TYPE=HIDDEN NAME=\"month\" VALUE=\"$month\">\n".
" <INPUT TYPE=HIDDEN NAME=\"day\" VALUE=\"$day\">\n".
" <INPUT TYPE=HIDDEN NAME=\"dhour\" VALUE=\"$dhour\">\n".
" <INPUT TYPE=HIDDEN NAME=\"dminute\" VALUE=\"$dminute\">\n".
" <INPUT TYPE=HIDDEN NAME=\"confirmed\" VALUE=\"yes\">\n".
' <INPUT TYPE=SUBMIT VALUE="' . _("Yes") . "\">\n".
" </FORM>\n".
" </TD><TD ALIGN=LEFT BGCOLOR=\"$color[4]\">\n".
" <FORM NAME=\"nodelevent\" METHOD=POST ACTION=\"day.php\">\n".
" <INPUT TYPE=HIDDEN NAME=\"year\" VALUE=\"$year\">\n".
" <INPUT TYPE=HIDDEN NAME=\"month\" VALUE=\"$month\">\n".
" <INPUT TYPE=HIDDEN NAME=\"day\" VALUE=\"$day\">\n".
' <INPUT TYPE=SUBMIT VALUE="' . _("No") . "\">\n".
" </FORM>\n".
" </TD></TR>\n".
" </TABLE>\n";
}
if ($month <= 0){
$month = date( 'm' );
}
if ($year <= 0){
$year = date( 'Y' );
}
if ($day <= 0){
$day = date( 'd' );
}
$calself=basename($PHP_SELF);
displayPageHeader($color, 'None');
//load calendar menu
calendar_header();
echo "<TR BGCOLOR=\"$color[0]\"><TD>".
"<TABLE WIDTH=100% BORDER=0 CELLPADDING=2 CELLSPACING=1 BGCOLOR=\"$color[0]\">".
'<tr><td>'.
date_intl( 'l, F d Y', mktime(0, 0, 0, $month, $day, $year));
if (isset($dyear) && isset($dmonth) && isset($dday) && isset($dhour) && isset($dminute)){
if (isset($confirmed)){
delete_event("$dmonth$dday$dyear", "$dhour$dminute");
echo '<br><br>' . _("Event deleted!") . "<BR>\n";
echo "<A HREF=\"day.php?year=$year&month=$month&day=$day\">" .
_("Day View") . "</A>\n";
} else {
readcalendardata();
confirm_deletion();
}
} else {
echo '<br>' . _("Nothing to delete!");
}
?>
</table></td></tr></table>
</body></html>
|