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 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622 623 624 625 626 627 628 629 630 631 632 633 634 635 636 637 638 639 640 641 642 643 644 645 646 647 648 649 650 651 652 653 654 655 656 657 658 659 660 661 662 663 664 665 666 667 668 669 670 671 672 673 674 675 676 677 678 679 680 681 682 683 684 685 686 687 688 689 690 691 692 693 694 695 696 697 698 699 700 701 702 703 704 705 706 707 708 709 710 711 712 713 714 715 716 717 718 719 720 721 722 723 724 725 726 727 728 729 730 731 732 733 734 735 736 737 738 739 740 741 742 743 744 745 746 747 748 749 750 751 752 753 754 755 756 757 758 759 760 761 762 763 764 765 766 767 768 769 770 771 772 773 774
|
<?php
/*
* $Id: edit_entry.php,v 1.71 2004/12/09 22:07:34 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
*
*/
include_once 'includes/init.php';
include_once 'includes/site_extras.php';
load_user_categories ();
// 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 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];
if ( $time >= 0 ) { /* -1 = no time specified */
$time += $TZ_OFFSET * 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 = "";
}
$priority = $row[6];
$type = $row[7];
$access = $row[8];
$name = $row[9];
$description = $row[10];
// 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 ) ) {
if ( ( empty ( $is_secretary ) || ! $is_secretary )
|| $login != $row[0] ) $participants[$row[0]] = 1;
if ($login == $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
if ( empty ( $hour ) )
$time = -1;
else
$time = $hour * 100;
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 ( empty ( $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", $thisyear, $thismonth, $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()"';
$INC = array ( 'htmlarea/htmlarea.php', 'js/edit_entry.php',
'js/visible.php', 'htmlarea/core.php' );
} else {
// No htmlarea files found...
$BodyX = 'onload="timetype_handler()"';
$INC = array ( 'js/edit_entry.php', 'js/visible.php' );
}
} else {
$textareasize = 'rows="5" cols="40"';
$BodyX = 'onload="timetype_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 ) && ( $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";
?>
<!-- TABS -->
<div id="tabs">
<span class="tabfor" id="tab_details"><a href="#tabdetails" onclick="return showTab('details')"><?php etranslate("Details") ?></a></span>
<span class="tabbak" id="tab_sched"><a href="#tabsched" onclick="return showTab('sched')"><?php etranslate("Scheduling") ?></a></span>
<span class="tabbak" id="tab_participants"><a href="#tabparticipants" onclick="return showTab('participants')"><?php etranslate("Participants") ?></a></span>
<span class="tabbak" id="tab_pete"><a href="#tabpete" onclick="return showTab('pete')"><?php etranslate("Repeat") ?></a></span>
</div>
<!-- TABS BODY -->
<div id="tabscontent">
<!-- DETAILS -->
<a name="tabdetails"></a>
<div id="tabscontent_details">
<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 ( $disable_access_field != "Y" ) { ?>
<div class="tooltip" title="<?php etooltip("access-help")?>">
<label for="entry_access"><?php etranslate("Access")?>:</label>
<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>
</div><br />
<?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 ( $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 } ?>
</td></tr>
</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>
</div>
<!-- SCHEDULING -->
<a name="tabsched"></a>
<div id="tabscontent_sched">
<table>
<tr><td class="tooltip" title="<?php etooltip("date-help")?>">
<?php etranslate("Date")?>:</td><td>
<?php
print_date_selection ( "", $cal_date )
?>
</td></tr>
<tr><td> </td><td>
<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>
<?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>
</table>
<div id="timeentryduration">
<span class="tooltip" title="<?php
etooltip("duration-help")
?>"><?php
etranslate("Duration")
?>: </span>
<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>)
</div>
<?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>
</table>
<?php } ?>
</div>
<a name="tabparticipants"></a>
<div id="tabscontent_participants">
<!-- PARTICIPANTS -->
<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\"";
else 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";
}
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>
</div>
<!-- REPEATING INFO -->
<a name="tabpete"></a>
<div id="tabscontent_pete">
<table>
<?php if ( $disable_repeating_field != "Y" ) { ?>
<tr style="vertical-align:top;"><td class="tooltip" title="<?php etooltip("repeat-type-help")?>">
<?php etranslate("Repeat Type")?>:</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="enddate" 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="freq" 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="day" 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>
</div>
</div>
<?php } ?>
<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>
|