| Server IP : 172.64.80.1 / Your IP : 216.73.216.175 Web Server : LiteSpeed System : Linux srv13.swhc.ca 4.18.0-553.126.2.lve.el8.x86_64 #1 SMP Thu May 28 14:12:30 UTC 2026 x86_64 User : hongluck ( 2522) PHP Version : 7.4.33 Disable Function : NONE MySQL : OFF | cURL : ON | WGET : ON | Perl : ON | Python : ON | Sudo : OFF | Pkexec : OFF Directory : /home/hongluck/public_html/old site/webcal/ |
Upload File : |
<?php
/*
* $Id: edit_entry.php,v 1.91.2.1 2005/08/08 23:30:57 cknudsen Exp $
*
* Description:
* Presents page to edit/add an event
*
* Notes:
* If htmlarea is installed, users can use WYSIWYG editing.
* SysAdmin must enable HTML for event full descriptions.
* The htmlarea files should be installed so that the htmlarea.php
* file is in ../includes/htmlarea/htmlarea.php
* The htmlarea code can be downloaded from:
* http://www.htmlarea.com
* TODO
* This file will not pass XHTML validation with HTMLArea enabled
*/
include_once 'includes/init.php';
include_once 'includes/site_extras.php';
load_user_categories ();
// Default for using tabs is enabled
if ( empty ( $EVENT_EDIT_TABS ) )
$EVENT_EDIT_TABS = 'Y'; // default
$useTabs = ( $EVENT_EDIT_TABS == 'Y' );
// make sure this is not a read-only calendar
$can_edit = false;
// Public access can only add events, not edit.
if ( $login == "__public__" && $id > 0 ) {
$id = 0;
}
$external_users = "";
$participants = array ();
if ( $readonly == 'Y' ) {
$can_edit = false;
} else if ( ! empty ( $id ) && $id > 0 ) {
// first see who has access to edit this entry
if ( $is_admin ) {
$can_edit = true;
} else {
$can_edit = false;
if ( $readonly == "N" || $is_admin ) {
$sql = "SELECT webcal_entry.cal_id FROM webcal_entry, " .
"webcal_entry_user WHERE webcal_entry.cal_id = " .
"webcal_entry_user.cal_id AND webcal_entry.cal_id = $id " .
"AND (webcal_entry.cal_create_by = '$login' " .
"OR webcal_entry_user.cal_login = '$login')";
$res = dbi_query ( $sql );
if ( $res ) {
$row = dbi_fetch_row ( $res );
if ( $row && $row[0] > 0 )
$can_edit = true;
dbi_free_result ( $res );
}
}
}
$sql = "SELECT cal_create_by, cal_date, cal_time, cal_mod_date, " .
"cal_mod_time, cal_duration, cal_priority, cal_type, cal_access, " .
"cal_name, cal_description, cal_group_id FROM webcal_entry WHERE cal_id = " . $id;
$res = dbi_query ( $sql );
if ( $res ) {
$row = dbi_fetch_row ( $res );
if ( ! empty ( $override ) && ! empty ( $date ) ) {
// Leave $cal_date to what was set in URL with date=YYYYMMDD
$cal_date = $date;
} else {
$cal_date = $row[1];
}
$create_by = $row[0];
if (( $user == $create_by ) && ( $is_assistant || $is_nonuser_admin )) $can_edit = true;
$year = (int) ( $cal_date / 10000 );
$month = ( $cal_date / 100 ) % 100;
$day = $cal_date % 100;
$time = $row[2];
// test for AllDay event, if so, don't adjust time
if ( $time > 0 || ( $time == 0 && $row[5] != 1440 ) ) { /* -1 = no time specified */
$time += ( ! empty ( $TZ_OFFSET )?$TZ_OFFSET : 0) * 10000;
if ( $time > 240000 ) {
$time -= 240000;
$gmt = mktime ( 3, 0, 0, $month, $day, $year );
$gmt += $ONE_DAY;
$month = date ( "m", $gmt );
$day = date ( "d", $gmt );
$year = date ( "Y", $gmt );
} else if ( $time < 0 ) {
$time += 240000;
$gmt = mktime ( 3, 0, 0, $month, $day, $year );
$gmt -= $ONE_DAY;
$month = date ( "m", $gmt );
$day = date ( "d", $gmt );
$year = date ( "Y", $gmt );
}
// Set alterted date
$cal_date = sprintf("%04d%02d%02d",$year,$month,$day);
}
if ( $time >= 0 ) {
$hour = floor($time / 10000);
$minute = ( $time / 100 ) % 100;
$duration = $row[5];
} else {
$duration = "";
$hour = -1;
}
$priority = $row[6];
$type = $row[7];
$access = $row[8];
$name = $row[9];
$description = $row[10];
$parent = $row[11];
// check for repeating event info...
// but not if we are overriding a single entry of an already repeating
// event... confusing, eh?
if ( ! empty ( $override ) ) {
$rpt_type = "none";
$rpt_end = 0;
$rpt_end_date = $cal_date;
$rpt_freq = 1;
$rpt_days = "nnnnnnn";
$rpt_sun = $rpt_mon = $rpt_tue = $rpt_wed =
$rpt_thu = $rpt_fri = $rpt_sat = false;
} else {
$res = dbi_query ( "SELECT cal_id, cal_type, cal_end, " .
"cal_frequency, cal_days FROM webcal_entry_repeats " .
"WHERE cal_id = $id" );
if ( $res ) {
if ( $row = dbi_fetch_row ( $res ) ) {
$rpt_type = $row[1];
if ( $row[2] > 0 )
$rpt_end = date_to_epoch ( $row[2] );
else
$rpt_end = 0;
$rpt_end_date = $row[2];
$rpt_freq = $row[3];
$rpt_days = $row[4];
$rpt_sun = ( substr ( $rpt_days, 0, 1 ) == 'y' );
$rpt_mon = ( substr ( $rpt_days, 1, 1 ) == 'y' );
$rpt_tue = ( substr ( $rpt_days, 2, 1 ) == 'y' );
$rpt_wed = ( substr ( $rpt_days, 3, 1 ) == 'y' );
$rpt_thu = ( substr ( $rpt_days, 4, 1 ) == 'y' );
$rpt_fri = ( substr ( $rpt_days, 5, 1 ) == 'y' );
$rpt_sat = ( substr ( $rpt_days, 6, 1 ) == 'y' );
}
}
}
}
$sql = "SELECT cal_login, cal_category FROM webcal_entry_user WHERE cal_id = $id";
$res = dbi_query ( $sql );
if ( $res ) {
while ( $row = dbi_fetch_row ( $res ) ) {
$participants[$row[0]] = 1;
if ($login == $row[0]) $cat_id = $row[1];
if ( ( $is_assistant || $is_admin ) && $user == $row[0]) $cat_id = $row[1];
}
}
if ( ! empty ( $allow_external_users ) && $allow_external_users == "Y" ) {
$external_users = event_get_external_users ( $id );
}
} else {
// New event.
$id = 0; // to avoid warnings below about use of undefined var
// Anything other then testing for strlen breaks either hour=0 or no hour in URL
if ( strlen ( $hour ) ) {
$time = $hour * 100;
} else {
$time = -1;
$hour = -1;
}
if ( ! empty ( $defusers ) ) {
$tmp_ar = explode ( ",", $defusers );
for ( $i = 0; $i < count ( $tmp_ar ); $i++ ) {
$participants[$tmp_ar[$i]] = 1;
}
}
if ( $readonly == "N" ) {
// If public, then make sure we can add events
if ( $login == '__public__' ) {
if ( $public_access_can_add )
$can_edit = true;
} else {
// not public user
$can_edit = true;
}
}
}
if ( ! empty ( $year ) && $year )
$thisyear = $year;
if ( ! empty ( $month ) && $month )
$thismonth = $month;
if ( ! empty ( $day ) && $day )
$thisday = $day;
if ( empty ( $rpt_type ) || ! $rpt_type )
$rpt_type = "none";
// avoid error for using undefined vars
if ( ! isset ( $hour ) )
$hour = -1;
if ( empty ( $duration ) )
$duration = 0;
if ( $duration == ( 24 * 60 ) ) {
$hour = $minute = $duration = "";
$allday = "Y";
} else
$allday = "N";
if ( empty ( $name ) )
$name = "";
if ( empty ( $description ) )
$description = "";
if ( empty ( $priority ) )
$priority = 0;
if ( empty ( $access ) )
$access = "";
if ( empty ( $rpt_freq ) )
$rpt_freq = 0;
if ( empty ( $rpt_end_date ) )
$rpt_end_date = 0;
if ( ( empty ( $year ) || ! $year ) &&
( empty ( $month ) || ! $month ) &&
( ! empty ( $date ) && strlen ( $date ) ) ) {
$thisyear = $year = substr ( $date, 0, 4 );
$thismonth = $month = substr ( $date, 4, 2 );
$thisday = $day = substr ( $date, 6, 2 );
$cal_date = $date;
} else {
if ( empty ( $cal_date ) )
$cal_date = date ( "Ymd" );
}
if ( empty ( $thisyear ) )
$thisdate = date ( "Ymd" );
else {
$thisdate = sprintf ( "%04d%02d%02d",
empty ( $thisyear ) ? date ( "Y" ) : $thisyear,
empty ( $thismonth ) ? date ( "m" ) : $thismonth,
empty ( $thisday ) ? date ( "d" ) : $thisday );
}
if ( empty ( $cal_date ) || ! $cal_date )
$cal_date = $thisdate;
if ( $allow_html_description == "Y" ){
// Allow HTML in description
// If they have installed the htmlarea widget, make use of it
$textareasize = 'rows="15" cols="50"';
if ( file_exists ( "includes/htmlarea/htmlarea.php" ) ) {
$BodyX = 'onload="initEditor();timetype_handler();rpttype_handler()"';
$INC = array ( 'htmlarea/htmlarea.php', 'js/edit_entry.php',
'js/visible.php', 'htmlarea/core.php' );
} else {
// No htmlarea files found...
$BodyX = 'onload="timetype_handler();rpttype_handler()"';
$INC = array ( 'js/edit_entry.php', 'js/visible.php' );
}
} else {
$textareasize = 'rows="5" cols="40"';
$BodyX = 'onload="timetype_handler();rpttype_handler()"';
$INC = array('js/edit_entry.php','js/visible.php');
}
print_header ( $INC, '', $BodyX );
?>
<h2><?php if ( $id ) echo translate("Edit Entry"); else echo translate("Add Entry"); ?> <img src="help.gif" alt="<?php etranslate("Help")?>" class="help" onclick="window.open ( 'help_edit_entry.php<?php if ( empty ( $id ) ) echo "?add=1"; ?>', 'cal_help', 'dependent,menubar,scrollbars,height=400,width=400,innerHeight=420,outerWidth=420');" /></h2>
<?php
if ( $can_edit ) {
?>
<form action="edit_entry_handler.php" method="post" name="editentryform">
<?php
if ( ! empty ( $id ) && ( empty ( $copy ) || $copy != '1' ) ) echo "<input type=\"hidden\" name=\"id\" value=\"$id\" />\n";
// we need an additional hidden input field
echo "<input type=\"hidden\" name=\"entry_changed\" value=\"\" />\n";
// are we overriding an entry from a repeating event...
if ( ! empty ( $override ) ) {
echo "<input type=\"hidden\" name=\"override\" value=\"1\" />\n";
echo "<input type=\"hidden\" name=\"override_date\" value=\"$cal_date\" />\n";
}
// if assistant, need to remember boss = user
if ( $is_assistant || $is_nonuser_admin || ! empty ( $user ) )
echo "<input type=\"hidden\" name=\"user\" value=\"$user\" />\n";
// if has cal_group_id was set, need to send parent = $parent
if ( ! empty ( $parent ) )
echo "<input type=\"hidden\" name=\"parent\" value=\"$parent\" />\n";
?>
<!-- TABS -->
<?php if ( $useTabs ) { ?>
<div id="tabs">
<span class="tabfor" id="tab_details"><a href="#tabdetails" onclick="return showTab('details')"><?php etranslate("Details") ?></a></span>
<?php if ( $disable_participants_field != "Y" ) { ?>
<span class="tabbak" id="tab_participants"><a href="#tabparticipants" onclick="return showTab('participants')"><?php etranslate("Participants") ?></a></span>
<?php } ?>
<?php if ( $disable_repeating_field != "Y" ) { ?>
<span class="tabbak" id="tab_pete"><a href="#tabpete" onclick="return showTab('pete')"><?php etranslate("Repeat") ?></a></span>
<?php } ?>
</div>
<?php } ?>
<!-- TABS BODY -->
<?php if ( $useTabs ) { ?>
<div id="tabscontent">
<!-- DETAILS -->
<a name="tabdetails"></a>
<div id="tabscontent_details">
<?php } ?>
<table style="border-width:0px;">
<tr><td style="width:14%;" class="tooltip" title="<?php etooltip("brief-description-help")?>">
<label for="entry_brief"><?php etranslate("Brief Description")?>:</label></td><td>
<input type="text" name="name" id="entry_brief" size="25" value="<?php
echo htmlspecialchars ( $name );
?>" /></td><td style="width:35%;">
</td></tr>
<tr><td style="vertical-align:top;" class="tooltip" title="<?php etooltip("full-description-help")?>">
<label for="entry_full"><?php etranslate("Full Description")?>:</label></td><td>
<textarea name="description" id="entry_full" <?php
echo $textareasize;
?>><?php
echo htmlspecialchars ( $description );
?></textarea></td><td style="vertical-align:top;">
<?php if (( ! empty ( $categories ) ) || ( $disable_access_field != "Y" ) ||
( $disable_priority_field != "Y" ) ){ // new table for extra fields ?>
<table>
<?php } ?>
<?php if ( $disable_access_field != "Y" ) { ?>
<tr><td class="tooltip" title="<?php etooltip("access-help")?>">
<label for="entry_access"><?php etranslate("Access")?>:</label></td><td>
<select name="access" id="entry_access">
<option value="P"<?php if ( $access == "P" || ! strlen ( $access ) ) echo " selected=\"selected\"";?>><?php etranslate("Public")?></option>
<option value="R"<?php if ( $access == "R" ) echo " selected=\"selected\"";?>><?php etranslate("Confidential")?></option>
</select>
</td></tr>
<?php } ?>
<?php if ( $disable_priority_field != "Y" ) { ?>
<tr><td class="tooltip" title="<?php etooltip("priority-help")?>">
<label for="entry_prio"><?php etranslate("Priority")?>: </label></td><td>
<select name="priority" id="entry_prio">
<option value="1"<?php if ( $priority == 1 ) echo " selected=\"selected\"";?>><?php etranslate("Low")?></option>
<option value="2"<?php if ( $priority == 2 || $priority == 0 ) echo " selected=\"selected\"";?>><?php etranslate("Medium")?></option>
<option value="3"<?php if ( $priority == 3 ) echo " selected=\"selected\"";?>><?php etranslate("High")?></option>
</select>
</td></tr>
<?php } ?>
<?php if ( ! empty ( $categories ) ) { ?>
<tr><td class="tooltip" title="<?php etooltip("category-help")?>">
<label for="entry_categories"><?php etranslate("Category")?>: </label></td><td>
<select name="cat_id" id="entry_categories">
<option value=""><?php etranslate("None")?></option>
<?php
foreach( $categories as $K => $V ){
echo " <option value=\"$K\"";
if ( $cat_id == $K ) echo " selected=\"selected\"";
echo ">$V</option>\n";
}
?>
</select>
</td></tr>
<?php } //end if (! empty ($categories)) ?>
<?php if (( ! empty ( $categories ) ) || ( $disable_access_field != "Y" ) ||
( $disable_priority_field != "Y" ) ){ // end the table ?>
</table>
<?php } ?>
</td></tr>
<tr><td class="tooltip" title="<?php etooltip("date-help")?>">
<?php etranslate("Date")?>:</td><td colspan="2">
<?php
print_date_selection ( "", $cal_date );
?>
</td></tr>
<tr><td> </td><td colspan="2">
<select name="timetype" onchange="timetype_handler()">
<option value="U" <?php if ( $allday != "Y" && $hour == -1 ) echo " selected=\"selected\""?>><?php etranslate("Untimed event"); ?></option>
<option value="T" <?php if ( $allday != "Y" && $hour >= 0 ) echo " selected=\"selected\""?>><?php etranslate("Timed event"); ?></option>
<option value="A" <?php if ( $allday == "Y" ) echo " selected=\"selected\""?>><?php etranslate("All day event"); ?></option>
</select>
</td></tr>
<tr id="timeentrystart"><td class="tooltip" title="<?php etooltip("time-help")?>">
<?php echo translate("Time") . ":"; ?></td><td colspan="2">
<?php
$h12 = $hour;
$amsel = " checked=\"checked\""; $pmsel = "";
if ( $TIME_FORMAT == "12" ) {
if ( $h12 < 12 ) {
$amsel = " checked=\"checked\""; $pmsel = "";
} else {
$amsel = ""; $pmsel = " checked=\"checked\"";
}
$h12 %= 12;
if ( $h12 == 0 ) $h12 = 12;
}
if ( $time < 0 )
$h12 = "";
?>
<input type="text" name="hour" size="2" value="<?php
if ( $time >= 0 && $allday != 'Y' ) echo $h12;
?>" maxlength="2" />:<input type="text" name="minute" size="2" value="<?php
if ( $time >= 0 && $allday != "Y" ) printf ( "%02d", $minute );
?>" maxlength="2" />
<?php
if ( $TIME_FORMAT == "12" ) {
echo "<label><input type=\"radio\" name=\"ampm\" value=\"am\" $amsel /> " .
translate("am") . "</label>\n";
echo "<label><input type=\"radio\" name=\"ampm\" value=\"pm\" $pmsel /> " .
translate("pm") . "</label>\n";
}
?>
<?php
$dur_h = (int)( $duration / 60 );
$dur_m = $duration - ( $dur_h * 60 );
if ($GLOBALS['TIMED_EVT_LEN'] != 'E') { ?>
</td></tr>
<tr id="timeentryduration"><td>
<span class="tooltip" title="<?php
etooltip("duration-help")
?>"><?php
etranslate("Duration")
?>: </span></td><td colspan="2">
<input type="text" name="duration_h" id="duration_h" size="2" maxlength="2" value="<?php
if ( $allday != "Y" ) printf ( "%d", $dur_h );
?>" />:<input type="text" name="duration_m" id="duration_m" size="2" maxlength="2" value="<?php
if ( $allday != "Y" )
printf ( "%02d", $dur_m );
?>" /> (<label for="duration_h"><?php
echo translate("hours")
?></label>: <label for="duration_m"><?php
echo translate("minutes")
?></label>)
</td></tr>
<?php } else {
if ( $id ) {
$t_h12 = $h12;
if ( $TIME_FORMAT == "12" ) {
// Convert to a twenty-four hour time scale
if ( !empty ( $amsel ) && $t_h12 == 12 )
$t_h12 = 0;
if ( !empty ( $pmsel ) && $t_h12 < 12 )
$t_h12 += 12;
} //end 12-hour time format
// Add duration
$endhour = $t_h12 + $dur_h;
$endminute = $minute + $dur_m;
$endhour = $endhour + ( $endminute / 60 );
$endminute %= 60;
if ( $TIME_FORMAT == "12" ) {
// Convert back to a standard time format
if ( $endhour < 12 ) {
$endamsel = " checked=\"checked\""; $endpmsel = "";
} else {
$endamsel = ""; $endpmsel = " checked=\"checked\"";
} //end if ( $endhour < 12 )
$endhour %= 12;
if ( $endhour == 0 ) $endhour = 12;
} //end if ( $TIME_FORMAT == "12" )
} else {
$endhour = $h12;
$endminute = $minute;
$endamsel = $amsel;
$endpmsel = $pmsel;
} //end if ( $id )
if ( $allday != "Y" && $hour == -1 ) {
$endhour = "";
$endminute = "";
} //end if ( $allday != "Y" && $hour == -1 )
?>
<span id="timeentryend" class="tooltip" title="<?php etooltip("end-time-help")?>"> -
<input type="text" name="endhour" size="2" value="<?php
if ( $allday != "Y" ) echo $endhour;
?>" maxlength="2" />:<input type="text" name="endminute" size="2" value="<?php
if ( $time >= 0 && $allday != "Y" ) printf ( "%02d", $endminute );
?>" maxlength="2" />
<?php
if ( $TIME_FORMAT == "12" ) {
echo "<label><input type=\"radio\" name=\"endampm\" value=\"am\" $endamsel /> " .
translate("am") . "</label>\n";
echo "<label><input type=\"radio\" name=\"endampm\" value=\"pm\" $endpmsel /> " .
translate("pm") . "</label>\n";
}
?>
</span>
</td></tr>
<?php } ?>
</table>
<table>
<?php
// site-specific extra fields (see site_extras.php)
// load any site-specific fields and display them
if ( $id > 0 )
$extras = get_site_extra_fields ( $id );
for ( $i = 0; $i < count ( $site_extras ); $i++ ) {
$extra_name = $site_extras[$i][0];
$extra_descr = $site_extras[$i][1];
$extra_type = $site_extras[$i][2];
$extra_arg1 = $site_extras[$i][3];
$extra_arg2 = $site_extras[$i][4];
//echo "<tr><td>Extra " . $extra_name . " - " . $site_extras[$i][2] .
// " - " . $extras[$extra_name]['cal_name'] .
// "arg1: $extra_arg1, arg2: $extra_arg2 </td></tr>\n";
if ( $extra_type == $EXTRA_MULTILINETEXT )
echo "<tr><td style=\"vertical-align:top; font-weight:bold;\"><br />\n";
else
echo "<tr><td style=\"font-weight:bold;\">";
echo translate ( $extra_descr ) . ":</td><td>\n";
if ( $extra_type == $EXTRA_URL ) {
echo "<input type=\"text\" size=\"50\" name=\"" . $extra_name .
"\" value=\"" . ( empty ( $extras[$extra_name]['cal_data'] ) ?
"" : htmlspecialchars ( $extras[$extra_name]['cal_data'] ) ) . "\" />";
} else if ( $extra_type == $EXTRA_EMAIL ) {
echo "<input type=\"text\" size=\"30\" name=\"" . $extra_name . "\" value=\"" . ( empty ( $extras[$extra_name]['cal_data'] ) ?
"" : htmlspecialchars ( $extras[$extra_name]['cal_data'] ) ) . "\" />";
} else if ( $extra_type == $EXTRA_DATE ) {
if ( ! empty ( $extras[$extra_name]['cal_date'] ) )
print_date_selection ( $extra_name, $extras[$extra_name]['cal_date'] );
else
print_date_selection ( $extra_name, $cal_date );
} else if ( $extra_type == $EXTRA_TEXT ) {
$size = ( $extra_arg1 > 0 ? $extra_arg1 : 50 );
echo "<input type=\"text\" size=\"" . $size . "\" name=\"" . $extra_name .
"\" value=\"" . ( empty ( $extras[$extra_name]['cal_data'] ) ?
"" : htmlspecialchars ( $extras[$extra_name]['cal_data'] ) ) . "\" />";
} else if ( $extra_type == $EXTRA_MULTILINETEXT ) {
$cols = ( $extra_arg1 > 0 ? $extra_arg1 : 50 );
$rows = ( $extra_arg2 > 0 ? $extra_arg2 : 5 );
echo "<textarea rows=\"" . $rows . "\" cols=\"" . $cols . "\" name=\"" . $extra_name . "\">" . ( empty ( $extras[$extra_name]['cal_data'] ) ?
"" : htmlspecialchars ( $extras[$extra_name]['cal_data'] ) ) . "</textarea>";
} else if ( $extra_type == $EXTRA_USER ) {
// show list of calendar users...
echo "<select name=\"" . $extra_name . "\">\n";
echo "<option value=\"\">None</option>\n";
$userlist = get_my_users ();
for ( $j = 0; $j < count ( $userlist ); $j++ ) {
echo "<option value=\"" . $userlist[$j]['cal_login'] . "\"";
if ( ! empty ( $extras[$extra_name]['cal_data'] ) &&
$userlist[$j]['cal_login'] == $extras[$extra_name]['cal_data'] )
echo " selected=\"selected\"";
echo ">" . $userlist[$j]['cal_fullname'] . "</option>\n";
}
echo "</select>\n";
} else if ( $extra_type == $EXTRA_REMINDER ) {
$rem_status = 0; // don't send
echo "<label><input type=\"radio\" name=\"" . $extra_name . "\" value=\"1\"";
if ( empty ( $id ) ) {
// adding event... check default
if ( ( $extra_arg2 & $EXTRA_REMINDER_DEFAULT_YES ) > 0 )
$rem_status = 1;
} else {
// editing event... check status
if ( ! empty ( $extras[$extra_name]['cal_remind'] ) )
$rem_status = 1;
}
if ( $rem_status )
echo " checked=\"checked\"";
echo " />";
etranslate ( "Yes" );
echo "</label> <label><input type=\"radio\" name=\"" . $extra_name . "\" value=\"0\"";
if ( ! $rem_status )
echo " checked=\"checked\"";
echo " />";
etranslate ( "No" );
echo "</label> ";
if ( ( $extra_arg2 & $EXTRA_REMINDER_WITH_DATE ) > 0 ) {
if ( ! empty ( $extras[$extra_name]['cal_date'] ) &&
$extras[$extra_name]['cal_date'] > 0 )
print_date_selection ( $extra_name, $extras[$extra_name]['cal_date'] );
else
print_date_selection ( $extra_name, $cal_date );
} else if ( ( $extra_arg2 & $EXTRA_REMINDER_WITH_OFFSET ) > 0 ) {
if ( ! empty ( $extras[$extra_name]['cal_data'] ) )
$minutes = $extras[$extra_name]['cal_data'];
else
$minutes = $extra_arg1;
// will be specified in total minutes
$d = (int) ( $minutes / ( 24 * 60 ) );
$minutes -= ( $d * 24 * 60 );
$h = (int) ( $minutes / 60 );
$minutes -= ( $h * 60 );
echo "<label><input type=\"text\" size=\"2\" name=\"" . $extra_name .
"_days\" value=\"$d\" /> " . translate("days") . "</label> \n";
echo "<label><input type=\"text\" size=\"2\" name=\"" . $extra_name .
"_hours\" value=\"$h\" /> " . translate("hours") . "</label> \n";
echo "<label><input type=\"text\" size=\"2\" name=\"" . $extra_name .
"_minutes\" value=\"$minutes\" /> " . translate("minutes") . " " . translate("before event") . "</label>";
}
} else if ( $extra_type == $EXTRA_SELECTLIST ) {
// show custom select list.
echo "<select name=\"" . $extra_name . "\">\n";
if ( is_array ( $extra_arg1 ) ) {
for ( $j = 0; $j < count ( $extra_arg1 ); $j++ ) {
echo "<option";
if ( ! empty ( $extras[$extra_name]['cal_data'] ) &&
$extra_arg1[$j] == $extras[$extra_name]['cal_data'] )
echo " selected=\"selected\"";
echo ">" . $extra_arg1[$j] . "</option>\n";
}
}
echo "</select>\n";
}
echo "</td></tr>\n";
}
// end site-specific extra fields
?>
</table>
<?php if ( $useTabs ) { ?>
</div>
<?php } /* $useTabs */ ?>
<!-- PARTICIPANTS -->
<?php if ( $useTabs ) { ?>
<a name="tabparticipants"></a>
<div id="tabscontent_participants">
<?php } /* $useTabs */ ?>
<table>
<?php
// Only ask for participants if we are multi-user.
$show_participants = ( $disable_participants_field != "Y" );
if ( $is_admin )
$show_participants = true;
if ( $login == "__public__" && $public_access_others != "Y" )
$show_participants = false;
if ( $single_user == "N" && $show_participants ) {
$userlist = get_my_users ();
if ($nonuser_enabled == "Y" ) {
$nonusers = get_nonuser_cals ();
$userlist = ($nonuser_at_top == "Y") ? array_merge($nonusers, $userlist) : array_merge($userlist, $nonusers);
}
$num_users = 0;
$size = 0;
$users = "";
for ( $i = 0; $i < count ( $userlist ); $i++ ) {
$l = $userlist[$i]['cal_login'];
$size++;
$users .= "<option value=\"" . $l . "\"";
if ( $id > 0 ) {
if ( ! empty ($participants[$l]) )
$users .= " selected=\"selected\"";
} else {
if ( ! empty ($defusers) ) {
// default selection of participants was in the URL
if ( ! empty ( $participants[$l] ) )
$users .= " selected=\"selected\"";
} else {
if ( ($l == $login && ! $is_assistant && ! $is_nonuser_admin) || (! empty ($user) && $l == $user) )
$users .= " selected=\"selected\"";
}
if ( $l == '__public__' &&
! empty ($public_access_default_selected) &&
$public_access_default_selected == 'Y' )
$users .= " selected=\"selected\"";
}
$users .= ">" . $userlist[$i]['cal_fullname'] . "</option>\n";
}
if ( $size > 50 )
$size = 15;
else if ( $size > 5 )
$size = 5;
print "<tr title=\"" .
tooltip("participants-help") . "\"><td class=\"tooltipselect\">\n<label for=\"entry_part\">" .
translate("Participants") . ":</label></td><td>\n";
print "<select name=\"participants[]\" id=\"entry_part\" size=\"$size\" multiple=\"multiple\">$users\n";
print "</select>\n";
if ( $groups_enabled == "Y" ) {
echo "<input type=\"button\" onclick=\"selectUsers()\" value=\"" .
translate("Select") . "...\" />\n";
}
echo "<input type=\"button\" onclick=\"showSchedule()\" value=\"" .
translate("Availability") . "...\" />\n";
print "</td></tr>\n";
// external users
if ( ! empty ( $allow_external_users ) && $allow_external_users == "Y" ) {
print "<tr title=\"" .
tooltip("external-participants-help") . "\"><td style=\"vertical-align:top;\" class=\"tooltip\">\n<label for=\"entry_extpart\">" .
translate("External Participants") . ":</label></td><td>\n";
print "<textarea name=\"externalparticipants\" id=\"entry_extpart\" rows=\"5\" cols=\"40\">";
print $external_users . "</textarea>\n</td></tr>\n";
}
}
?>
</table>
<?php if ( $useTabs ) { ?>
</div>
<?php } /* $useTabs */ ?>
<!-- REPEATING INFO -->
<?php if ( $disable_repeating_field != "Y" ) { ?>
<?php if ( $useTabs ) { ?>
<a name="tabpete"></a>
<div id="tabscontent_pete">
<?php } /* $useTabs */ ?>
<table>
<tr style="vertical-align:top;"><td class="tooltip" title="<?php etooltip("repeat-type-help")?>">
<label for="rpttype"><?php etranslate("Repeat Type")?>:</label></td><td>
<select name="rpt_type" id="rpttype" onchange="rpttype_handler()">
<?php
echo " <option value=\"none\"" .
( strcmp ( $rpt_type, 'none' ) == 0 ? " selected=\"selected\"" : "" ) . ">" .
translate("None") .
"</option>\n";
echo " <option value=\"daily\"" .
( strcmp ( $rpt_type, 'daily' ) == 0 ? " selected=\"selected\"" : "" ) . ">" .
translate("Daily") .
"</option>\n";
echo " <option value=\"weekly\"" .
( strcmp ( $rpt_type, 'weekly' ) == 0 ? " selected=\"selected\"" : "" ) . ">" .
translate("Weekly") .
"</option>\n";
echo " <option value=\"monthlyByDay\"" .
( strcmp ( $rpt_type, 'monthlyByDay' ) == 0 ? " selected=\"selected\"" : "" ) . ">" .
translate("Monthly") . " (" . translate("by day") . ")" . "
</option>\n";
echo " <option value=\"monthlyByDayR\"" .
( strcmp ( $rpt_type, 'monthlyByDayR' ) == 0 ? " selected=\"selected\"" : "" ) . ">" .
translate("Monthly") . " (" . translate("by day (from end)") . ")" .
"</option>\n";
echo " <option value=\"monthlyByDate\"" .
( strcmp ( $rpt_type, 'monthlyByDate' ) == 0 ? " selected=\"selected\"" : "" ) . ">" .
translate("Monthly") . " (" . translate("by date") . ")" .
"</option>\n";
echo " <option value=\"yearly\"" .
( strcmp ( $rpt_type, 'yearly' ) == 0 ? " selected=\"selected\"" : "" ) . ">" .
translate("Yearly") .
"</option>\n";
?>
</select>
</td></tr>
<tr id="rptenddate" style="visibility:hidden;"><td class="tooltip" title="<?php etooltip("repeat-end-date-help")?>">
<?php etranslate("Repeat End Date")?>:</td><td>
<label><input type="checkbox" name="rpt_end_use" value="y" <?php
echo ( ! empty ( $rpt_end ) ? " checked=\"checked\"" : "" );
?> /> <?php etranslate("Use end date")?></label>
<span class="end_day_selection"><?php
print_date_selection ( "rpt_", $rpt_end_date ? $rpt_end_date : $cal_date )
?></span>
</td></tr>
<tr id="rptfreq" style="visibility:hidden;" title="<?php etooltip("repeat-frequency-help")?>"><td class="tooltip">
<label for="entry_freq"><?php etranslate("Frequency")?>:</label></td><td>
<input type="text" name="rpt_freq" id="entry_freq" size="4" maxlength="4" value="<?php echo $rpt_freq; ?>" />
</td></tr>
<tr id="rptday" style="visibility:hidden;" title="<?php etooltip("repeat-day-help")?>"><td class="tooltip">
<?php etranslate("Repeat Day")?>: </td><td>
<?php
if( $WEEK_START != 1)
echo "<label><input type=\"checkbox\" name=\"rpt_sun\" value=\"y\""
. (!empty($rpt_sun)?" checked=\"checked\"":"") . " /> " . translate("Sunday") .
"</label>\n";
echo "<label><input type=\"checkbox\" name=\"rpt_mon\" value=\"y\""
. (!empty($rpt_mon)?" checked=\"checked\"":"") . " /> " . translate("Monday") .
"</label>\n";
echo "<label><input type=\"checkbox\" name=\"rpt_tue\" value=\"y\""
. (!empty($rpt_tue)?" checked=\"checked\"":"") . " /> " . translate("Tuesday") .
"</label>\n";
echo "<label><input type=\"checkbox\" name=\"rpt_wed\" value=\"y\""
. (!empty($rpt_wed)?" checked=\"checked\"":"") . " /> " . translate("Wednesday") .
"</label>\n";
echo "<label><input type=\"checkbox\" name=\"rpt_thu\" value=\"y\""
. (!empty($rpt_thu)?" checked=\"checked\"":"") . " /> " . translate("Thursday") .
"</label>\n";
echo "<label><input type=\"checkbox\" name=\"rpt_fri\" value=\"y\""
. (!empty($rpt_fri)?" checked=\"checked\"":"") . " /> " . translate("Friday") .
"</label>\n";
echo "<label><input type=\"checkbox\" name=\"rpt_sat\" value=\"y\""
. (!empty($rpt_sat)?" checked=\"checked\"":"") . " /> " . translate("Saturday") .
"</label>\n";
if( $WEEK_START == 1)
echo "<label><input type=\"checkbox\" name=\"rpt_sun\" value=\"y\""
. (!empty($rpt_sun)?" checked=\"checked\"":"") . " /> " . translate("Sunday") .
"</label>\n";
?></td></tr>
</table>
<?php if ( $useTabs ) { ?>
</div> <!-- End tabscontent_pete -->
<?php } /* $useTabs */ ?>
<?php } ?>
</div> <!-- End tabscontent -->
<table style="border-width:0px;">
<tr><td>
<script type="text/javascript">
<!-- <![CDATA[
document.writeln ( '<input type="button" value="<?php etranslate("Save")?>" onclick="validate_and_submit()" />' );
//]]> -->
</script>
<noscript>
<input type="submit" value="<?php etranslate("Save")?>" />
</noscript>
</td></tr>
</table>
<input type="hidden" name="participant_list" value="" />
</form>
<?php if ( $id > 0 && ( $login == $create_by || $single_user == "Y" || $is_admin ) ) { ?>
<a href="del_entry.php?id=<?php echo $id;?>" onclick="return confirm('<?php etranslate("Are you sure you want to delete this entry?")?>');"><?php etranslate("Delete entry")?></a><br />
<?php
} //end if clause for delete link
} else {
echo translate("You are not authorized to edit this entry") . ".";
} //end if ( $can_edit )
?>
<?php print_trailer(); ?>
</body>
</html>