X-Git-Url: https://vcs.fsf.org/?a=blobdiff_plain;ds=sidebyside;f=plugins%2Fcalendar%2Fevent_edit.php;h=a5e6be1667aab0da83d50a511de274b2344a92a6;hb=1d80c108a1d741b7dcb562ea1cf6d2214322b192;hp=8c8fdfa42ba0e7b98f0092ec3976562fbdd22044;hpb=beb218e072d898fe88559910bfb6edc0d7d071fd;p=squirrelmail.git diff --git a/plugins/calendar/event_edit.php b/plugins/calendar/event_edit.php index 8c8fdfa4..a5e6be16 100644 --- a/plugins/calendar/event_edit.php +++ b/plugins/calendar/event_edit.php @@ -1,24 +1,106 @@ - * Licensed under the GNU GPL. For full terms see the file COPYING. + * Originally contrubuted by Michal Szczotka * - * Functions to edit an event. + * Functions to edit an event. * * $Id$ + * @package plugins + * @subpackage calendar */ -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'); +/** @ignore */ +define('SM_PATH','../../'); + +/* Calender plugin required files. */ +require_once(SM_PATH . 'plugins/calendar/calendar_data.php'); +require_once(SM_PATH . 'plugins/calendar/functions.php'); + +/* SquirrelMail required files. */ +require_once(SM_PATH . 'include/validate.php'); +require_once(SM_PATH . 'functions/strings.php'); +require_once(SM_PATH . 'functions/date.php'); +require_once(SM_PATH . 'config/config.php'); +require_once(SM_PATH . 'functions/page_header.php'); +require_once(SM_PATH . 'include/load_prefs.php'); +require_once(SM_PATH . 'functions/html.php'); + + +/* get globals */ + +if (isset($_POST['updated'])) { + $updated = $_POST['updated']; +} +if (isset($_POST['event_year'])) { + $event_year = $_POST['event_year']; +} +if (isset($_POST['event_month'])) { + $event_month = $_POST['event_month']; +} +if (isset($_POST['event_day'])) { + $event_day = $_POST['event_day']; +} +if (isset($_POST['event_hour'])) { + $event_hour = $_POST['event_hour']; +} +if (isset($_POST['event_minute'])) { + $event_minute = $_POST['event_minute']; +} +if (isset($_POST['event_length'])) { + $event_length = $_POST['event_length']; +} +if (isset($_POST['event_title'])) { + $event_title = $_POST['event_title']; +} +if (isset($_POST['event_text'])) { + $event_text = $_POST['event_text']; +} +if (isset($_POST['send'])) { + $send = $_POST['send']; +} +if (isset($_POST['event_priority'])) { + $event_priority = $_POST['event_priority']; +} +if (isset($_POST['confirmed'])) { + $confirmed = $_POST['confirmed']; +} +if (isset($_POST['year'])) { + $year = $_POST['year']; +} +elseif (isset($_GET['year'])) { + $year = $_GET['year']; +} +if (isset($_POST['month'])) { + $month = $_POST['month']; +} +elseif (isset($_GET['month'])) { + $month = $_GET['month']; +} +if (isset($_POST['day'])) { + $day = $_POST['day']; +} +elseif (isset($_GET['day'])) { + $day = $_GET['day']; +} +if (isset($_POST['hour'])) { + $hour = $_POST['hour']; +} +elseif (isset($_GET['hour'])) { + $hour = $_GET['hour']; +} +if (isset($_POST['minute'])) { + $minute = $_POST['minute']; +} +elseif (isset($_GET['minute'])) { + $minute = $_GET['minute']; +} +/* got 'em */ // update event info function show_event_form() { @@ -32,8 +114,9 @@ function show_event_form() { " \n". " \n". " \n". - " " . _("Date:") . "\n". - " \n". + html_tag( 'tr' ) . + html_tag( 'td', _("Date:"), 'right', $color[4] ) . "\n" . + html_tag( 'td', '', 'left', $color[4] ) . " \n" . @@ -45,9 +128,10 @@ function show_event_form() { " \n". - " \n". - " " . _("Time:") . "\n". - " \n". + " \n". + html_tag( 'tr' ) . + html_tag( 'td', _("Time:"), 'right', $color[4] ) . "\n" . + html_tag( 'td', '', 'left', $color[4] ) . " \n". @@ -55,29 +139,35 @@ function show_event_form() { " \n". - " \n". - " " . _("Length:") . "\n". - " \n". + " \n". + html_tag( 'tr' ) . + html_tag( 'td', _("Length:"), 'right', $color[4] ) . "\n" . + html_tag( 'td', '', 'left', $color[4] ) . " \n". - " \n". - " " . _("Priority:") . "\n". - " \n". + " \n". + html_tag( 'tr' ) . + html_tag( 'td', _("Priority:"), 'right', $color[4] ) . "\n" . + html_tag( 'td', '', 'left', $color[4] ) . " \n". - " \n". - " " . _("Title:") . "\n". - " \n". + " \n". + html_tag( 'tr' ) . + html_tag( 'td', _("Title:"), 'right', $color[4] ) . "\n" . + html_tag( 'td', '', 'left', $color[4] ) . "
\n". - " \n". - " \n". - " \n". - " \n". - " \n". - "\n"; + " \n". + html_tag( 'td', + " \n" , + 'left', $color[4], 'colspan="2"' ) . + '' . html_tag( 'tr' ) . + html_tag( 'td', + "\n" , + 'left', $color[4], 'colspan="2"' ) . + "\n"; } // self explenatory @@ -86,63 +176,86 @@ function confirm_update() { $tmparray = $calendardata["$month$day$year"]["$hour$minute"]; - echo " \n". - " \n". - " \n". - " \n". - " \n". - " \n". - " \n". - " \n". - " \n". - " \n". - " \n". - " \n". - " \n". - " \n". - " \n". - " \n". - " \n". - " \n". - " \n". - " \n". - " \n". - " \n". - " \n". - " \n". - "
\n". - _("Do you really want to change this event from:") . "
\n". - "
" . _("Date:") . "$month/$day/$year
" . _("Time:") . "$hour:$minute
" . _("Priority:") . "$tmparray[priority]
" . _("Title:") . "$tmparray[title]
" . _("Message:") . "$tmparray[message]
\n". - _("to:") . "
\n". - "
" . _("Date:") . "$event_month/$event_day/$event_year
" . ("Time:") . "$event_hour:$event_minute
" . _("Priority:") . "$event_priority
" . _("Title:") . "$event_title
" . _("Message:") . "$event_text
\n". - "
\n". - " \n". - " \n". - " \n". - " \n". - " \n". - " \n". - " \n". - " \n". - " \n". - " \n". - " \n". - " \n". - " \n". - " \n". - " \n". - " \n". - ' \n". - "
\n". - "
\n". - "
\n". - " \n". - " \n". - " \n". - ' \n". - "
\n". - "
\n"; + echo html_tag( 'table', + html_tag( 'tr', + html_tag( 'th', _("Do you really want to change this event from:") . "
\n", '', $color[4], 'colspan="2"' ) ."\n" + ) . + html_tag( 'tr', + html_tag( 'td', _("Date:") , 'right', $color[4] ) ."\n" . + html_tag( 'td', $month.'/'.$day.'/'.$year , 'left', $color[4] ) ."\n" + ) . + html_tag( 'tr', + html_tag( 'td', _("Time:") , 'right', $color[4] ) ."\n" . + html_tag( 'td', $hour.':'.$minute , 'left', $color[4] ) ."\n" + ) . + html_tag( 'tr', + html_tag( 'td', _("Priority:") , 'right', $color[4] ) ."\n" . + html_tag( 'td', $tmparray['priority'] , 'left', $color[4] ) ."\n" + ) . + html_tag( 'tr', + html_tag( 'td', _("Title:") , 'right', $color[4] ) ."\n" . + html_tag( 'td', $tmparray['title'] , 'left', $color[4] ) ."\n" + ) . + html_tag( 'tr', + html_tag( 'td', _("Message:") , 'right', $color[4] ) ."\n" . + html_tag( 'td', $tmparray['message'] , 'left', $color[4] ) ."\n" + ) . + html_tag( 'tr', + html_tag( 'th', _("to:") . "
\n", '', $color[4], 'colspan="2"' ) ."\n" + ) . + html_tag( 'tr', + html_tag( 'td', _("Date:") , 'right', $color[4] ) ."\n" . + html_tag( 'td', $event_month.'/'.$event_day.'/'.$event_year , 'left', $color[4] ) ."\n" + ) . + html_tag( 'tr', + html_tag( 'td', _("Time:") , 'right', $color[4] ) ."\n" . + html_tag( 'td', $event_hour.':'.$event_minute , 'left', $color[4] ) ."\n" + ) . + html_tag( 'tr', + html_tag( 'td', _("Priority:") , 'right', $color[4] ) ."\n" . + html_tag( 'td', $event_priority , 'left', $color[4] ) ."\n" + ) . + html_tag( 'tr', + html_tag( 'td', _("Title:") , 'right', $color[4] ) ."\n" . + html_tag( 'td', $event_title , 'left', $color[4] ) ."\n" + ) . + html_tag( 'tr', + html_tag( 'td', _("Message:") , 'right', $color[4] ) ."\n" . + html_tag( 'td', $event_text , 'left', $color[4] ) ."\n" + ) . + html_tag( 'tr', + html_tag( 'td', + "
\n". + " \n". + " \n". + " \n". + " \n". + " \n". + " \n". + " \n". + " \n". + " \n". + " \n". + " \n". + " \n". + " \n". + " \n". + " \n". + " \n". + ' \n". + "
\n" , + 'right', $color[4] ) ."\n" . + html_tag( 'td', + "
\n". + " \n". + " \n". + " \n". + ' \n". + "
\n" , + 'left', $color[4] ) ."\n" + ) , + '', $color[0], 'border="0" cellpadding="2" cellspacing="1"' ); } if ($month <= 0){ @@ -164,11 +277,13 @@ displayPageHeader($color, 'None'); //load calendar menu calendar_header(); -echo "" . - "" . - ''; +echo html_tag( 'tr', '', '', $color[0] ) . + html_tag( 'td', '', 'left' ) . + html_tag( 'table', '', '', $color[0], 'width="100%" border="0" cellpadding="2" cellspacing="1"' ) . + html_tag( 'tr' ) . + html_tag( 'td', + date_intl( _("l, F j Y"), mktime(0, 0, 0, $month, $day, $year)) , + 'left', '', 'colspan="2"' ); if (!isset($updated)){ //get changes to event readcalendardata(); @@ -184,9 +299,16 @@ if (!isset($updated)){ confirm_update(); } else { update_event("$month$day$year", "$hour$minute"); - echo "\n"; - echo "\n"; + echo html_tag( 'tr', + html_tag( 'td', _("Event updated!"), 'left' ) + ) . "\n"; + echo html_tag( 'tr', + html_tag( 'td', + "" . + _("Day View") ."", + 'left' ) + ) . "\n"; + $fixdate = date( 'mdY', mktime(0, 0, 0, $event_month, $event_day, $event_year)); //if event has been moved to different year then act accordingly if ($year==$event_year){ @@ -205,4 +327,5 @@ if (!isset($updated)){ ?>
' . - date_intl( 'l, F d Y', mktime(0, 0, 0, $month, $day, $year)) . - '
" . _("Event updated!") . "
" . - _("Day View") ."
- + +