2000-08-18 05:24:22 +02:00
< ? php
/************************************************************************** \
* phpGroupWare - Calendar *
* http :// www . phpgroupware . org *
* Based on Webcalendar by Craig Knudsen < cknudsen @ radix . net > *
* http :// www . radix . net /~ cknudsen *
2001-01-17 13:35:43 +01:00
* Modified by Mark Peters < skeeter @ phpgroupware . org > *
2000-08-18 05:24:22 +02:00
* -------------------------------------------- *
* This program is free software ; you can redistribute it and / or modify it *
* under the terms of the GNU General Public License as published by the *
* Free Software Foundation ; either version 2 of the License , or ( at your *
* option ) any later version . *
\ **************************************************************************/
/* $Id$ */
2001-02-18 23:33:10 +01:00
$phpgw_flags = Array (
2001-02-26 13:23:48 +01:00
'currentapp' => 'calendar' ,
'enable_nextmatchs_class' => True ,
'noheader' => True ,
'nonavbar' => True ,
'noappheader' => True ,
'noappfooter' => True
2001-02-18 23:33:10 +01:00
);
$phpgw_info [ 'flags' ] = $phpgw_flags ;
include ( '../header.inc.php' );
$sb = CreateObject ( 'phpgwapi.sbox' );
$cal_info = CreateObject ( 'calendar.calendar_item' );
function display_item ( $field , $data )
{
global $p ;
$p -> set_var ( 'field' , $field );
$p -> set_var ( 'data' , $data );
$p -> parse ( 'output' , 'list' , True );
}
if ( $phpgw_info [ 'user' ][ 'preferences' ][ 'common' ][ 'timeformat' ] == '12' )
{
$hourformat = 'h' ;
}
else
{
$hourformat = 'H' ;
}
if ( $id > 0 )
{
2001-03-10 05:48:19 +01:00
$cal_stream = $phpgw -> calendar -> open ( 'INBOX' , intval ( $owner ), '' );
2001-03-09 13:23:12 +01:00
$event = $phpgw -> calendar -> fetch_event ( $cal_stream , intval ( $id ));
2001-02-18 23:33:10 +01:00
$can_edit = False ;
2001-03-09 13:23:12 +01:00
if (( $event -> owner == $owner ) && ( $phpgw -> calendar -> check_perms ( PHPGW_ACL_EDIT ) == True ))
2001-02-18 23:33:10 +01:00
{
2001-03-09 13:23:12 +01:00
if ( $event -> public != True )
2001-03-02 05:19:58 +01:00
{
if ( $phpgw -> calendar -> check_perms ( 16 ) == True )
{
$can_edit = True ;
}
}
else
{
$can_edit = True ;
}
2001-02-18 23:33:10 +01:00
}
if ( $can_edit == False )
{
2001-03-09 13:23:12 +01:00
header ( 'Location: ' . $phpgw -> link ( '/' . $phpgw_info [ 'flags' ][ 'currentapp' ] . '/view.php' , 'id=' . $id . '&owner=' . $owner ));
2001-02-18 23:33:10 +01:00
}
}
elseif ( isset ( $readsess ))
{
2001-03-09 13:23:12 +01:00
$event = $phpgw -> session -> appsession ( 'entry' , 'calendar' );
2001-02-18 23:33:10 +01:00
2001-03-09 13:23:12 +01:00
if ( $event -> owner == 0 )
2001-02-18 23:33:10 +01:00
{
2001-03-09 13:23:12 +01:00
$event -> owner = $owner ;
2001-02-18 23:33:10 +01:00
}
$can_edit = True ;
}
else
{
if ( $phpgw -> calendar -> check_perms ( PHPGW_ACL_ADD ) == False )
{
2001-03-09 13:23:12 +01:00
header ( 'Location: ' . $phpgw -> link ( '/' . $phpgw_info [ 'flags' ][ 'currentapp' ] . '/view.php' , 'id=' . $id . '&owner=' . $owner ));
2001-02-18 23:33:10 +01:00
}
2001-03-09 13:23:12 +01:00
$cal_stream = $phpgw -> calendar -> open ( 'INBOX' , intval ( $cal_info -> owner ), '' );
$phpgw -> calendar -> event_init ( $cal_stream );
$phpgw -> calendar -> event -> id = 0 ;
2001-02-18 23:33:10 +01:00
$can_edit = True ;
if ( ! isset ( $hour ))
{
$thishour = 0 ;
}
else
{
$thishour = ( int ) $hour ;
}
if ( ! isset ( $minute ))
{
$thisminute = 00 ;
}
else
{
$thisminute = ( int ) $minute ;
}
2001-03-09 13:23:12 +01:00
$phpgw -> calendar -> event_set_start ( $cal_stream , $thisyear , $thismonth , $thisday , $thishour , $this -> minute , 0 );
$phpgw -> calendar -> event_set_end ( $cal_stream , $thisyear , $thismonth , $thisday , $thishour , $this -> minute , 0 );
$phpgw -> calendar -> event_set_title ( $cal_stream , '' );
$phpgw -> calendar -> event_set_description ( $cal_stream , '' );
$phpgw -> calendar -> event -> priority = 2 ;
2001-02-18 23:33:10 +01:00
2001-03-09 13:23:12 +01:00
$phpgw -> calendar -> event_set_recur_none ( $cal_stream );
2001-03-10 05:48:19 +01:00
$event = $phpgw -> calendar -> event ;
2001-02-18 23:33:10 +01:00
}
2001-03-10 05:48:19 +01:00
$tz_offset = (( 60 * 60 ) * intval ( $phpgw_info [ 'user' ][ 'preferences' ][ 'common' ][ 'tz_offset' ]));
$start = mktime ( $event -> start -> hour , $event -> start -> min , $event -> start -> sec , $event -> start -> month , $event -> start -> mday , $event -> start -> year ) - $tz_offset ;
$end = mktime ( $event -> end -> hour , $event -> end -> min , $event -> end -> sec , $event -> end -> month , $event -> end -> mday , $event -> end -> year ) - $tz_offset ;
2001-02-18 23:33:10 +01:00
$phpgw -> common -> phpgw_header ();
echo parse_navbar ();
2001-03-10 05:48:19 +01:00
$p = CreateObject ( 'phpgwapi.Template' , $phpgw -> calendar -> template_dir );
2001-02-18 23:33:10 +01:00
$templates = Array (
2001-03-09 13:23:12 +01:00
'edit_entry_begin' => 'edit.tpl' ,
'list' => 'list.tpl' ,
'hr' => 'hr.tpl' ,
'edit_entry_end' => 'edit.tpl' ,
'form_button' => 'form_button_script.tpl'
2001-02-18 23:33:10 +01:00
);
$p -> set_file ( $templates );
if ( $id > 0 )
{
$action = lang ( 'Calendar - Edit' );
}
else
{
$action = lang ( 'Calendar - Add' );
}
2001-03-10 05:48:19 +01:00
$common_hidden = '<input type="hidden" name="id" value="' . $event -> id . '">' . " \n "
2001-02-18 23:33:10 +01:00
. '<input type="hidden" name="owner" value="' . $owner . '">' . " \n " ;
$vars = Array (
'bg_color' => $phpgw_info [ 'theme' ][ 'bg_text' ],
'calendar_action' => $action ,
2001-03-09 13:23:12 +01:00
'action_url' => $phpgw -> link ( '/' . $phpgw_info [ 'flags' ][ 'currentapp' ] . '/edit_entry_handler.php' ),
2001-02-18 23:33:10 +01:00
'common_hidden' => $common_hidden
);
$p -> set_var ( $vars );
$p -> parse ( 'out' , 'edit_entry_begin' );
2000-08-18 05:24:22 +02:00
2000-11-26 21:10:35 +01:00
// Brief Description
2001-03-18 18:04:22 +01:00
display_item ( lang ( 'Title' ), '<input name="title" size="25" value="' . $event -> title . '">' );
2000-11-26 21:10:35 +01:00
// Full Description
2001-03-10 05:48:19 +01:00
display_item ( lang ( 'Full Description' ), '<textarea name="description" rows="5" cols="40" wrap="virtual">' . $event -> description . '</textarea>' );
2000-08-18 05:24:22 +02:00
2000-11-26 21:10:35 +01:00
// Date
2001-03-10 05:48:19 +01:00
$day_html = $sb -> getDays ( 'start[mday]' , intval ( $phpgw -> common -> show_date ( $start , 'd' )));
$month_html = $sb -> getMonthText ( 'start[month]' , intval ( $phpgw -> common -> show_date ( $start , 'n' )));
$year_html = $sb -> getYears ( 'start[year]' , intval ( $phpgw -> common -> show_date ( $start , 'Y' )), intval ( $phpgw -> common -> show_date ( $start , 'Y' )));
2001-02-18 23:33:10 +01:00
display_item ( lang ( 'Start Date' ), $phpgw -> common -> dateformatorder ( $year_html , $month_html , $day_html ));
2000-08-18 05:24:22 +02:00
2000-11-26 21:10:35 +01:00
// Time
2001-02-18 23:33:10 +01:00
$amsel = ' checked' ; $pmsel = '' ;
if ( $phpgw_info [ 'user' ][ 'preferences' ][ 'common' ][ 'timeformat' ] == '12' )
{
2001-03-10 05:48:19 +01:00
if ( $event -> start -> hour >= 12 )
2001-02-18 23:33:10 +01:00
{
$amsel = '' ; $pmsel = ' checked' ;
}
}
2001-03-10 05:48:19 +01:00
$str = '<input name="start[hour]" size="2" VALUE="' . $phpgw -> common -> show_date ( $start , $hourformat ) . '" maxlength="2">:<input name="start[min]" size="2" value="' . $phpgw -> common -> show_date ( $start , 'i' ) . '" maxlength="2">' ;
2001-02-18 23:33:10 +01:00
if ( $phpgw_info [ 'user' ][ 'preferences' ][ 'common' ][ 'timeformat' ] == '12' )
{
2001-03-10 05:48:19 +01:00
$str .= '<input type="radio" name="start[ampm]" value="am"' . $amsel . '>am' ;
$str .= '<input type="radio" name="start[ampm]" value="pm"' . $pmsel . '>pm' ;
2001-02-18 23:33:10 +01:00
}
2000-12-04 02:11:53 +01:00
2001-02-18 23:33:10 +01:00
display_item ( lang ( 'Start Time' ), $str );
2000-12-04 02:11:53 +01:00
2001-02-18 23:33:10 +01:00
// End Date
2001-03-10 05:48:19 +01:00
$day_html = $sb -> getDays ( 'end[mday]' , intval ( $phpgw -> common -> show_date ( $end , 'd' )));
$month_html = $sb -> getMonthText ( 'end[month]' , intval ( $phpgw -> common -> show_date ( $end , 'n' )));
$year_html = $sb -> getYears ( 'end[year]' , intval ( $phpgw -> common -> show_date ( $end , 'Y' )), intval ( $phpgw -> common -> show_date ( $end , 'Y' )));
2001-02-18 23:33:10 +01:00
display_item ( lang ( 'End Date' ), $phpgw -> common -> dateformatorder ( $year_html , $month_html , $day_html ));
2000-12-04 02:11:53 +01:00
// End Time
2001-02-18 23:33:10 +01:00
$amsel = ' checked' ; $pmsel = '' ;
if ( $phpgw_info [ 'user' ][ 'preferences' ][ 'common' ][ 'timeformat' ] == '12' )
{
2001-03-10 05:48:19 +01:00
if ( $event -> end -> hour >= 12 )
2001-02-18 23:33:10 +01:00
{
$amsel = '' ; $pmsel = ' checked' ;
}
}
2001-03-10 05:48:19 +01:00
$str = '<input name="end[hour]" size="2" VALUE="' . $phpgw -> common -> show_date ( $end , $hourformat ) . '" maxlength="2">:<input name="end[min]" size="2" value="' . $phpgw -> common -> show_date ( $end , 'i' ) . '" maxlength="2">' ;
2001-02-18 23:33:10 +01:00
if ( $phpgw_info [ 'user' ][ 'preferences' ][ 'common' ][ 'timeformat' ] == '12' )
{
2001-03-10 05:48:19 +01:00
$str .= '<input type="radio" name="end[ampm]" value="am"' . $amsel . '>am' ;
$str .= '<input type="radio" name="end[ampm]" value="pm"' . $pmsel . '>pm' ;
2001-02-18 23:33:10 +01:00
}
2000-12-04 02:11:53 +01:00
2000-12-23 17:33:22 +01:00
display_item ( lang ( " End Time " ), $str );
2000-11-23 02:37:50 +01:00
2000-11-26 21:10:35 +01:00
// Priority
2001-03-10 05:48:19 +01:00
display_item ( lang ( 'Priority' ), $sb -> getPriority ( 'priority' , $event -> priority ));
2000-11-23 02:37:50 +01:00
2000-12-23 17:33:22 +01:00
// Access
2001-03-10 05:48:19 +01:00
$str = '<input type="checkbox" name="private" value="private"' ;
if ( $event -> public != True )
2001-02-18 23:33:10 +01:00
{
$str .= ' checked' ;
}
$str .= '>' ;
display_item ( lang ( 'Private' ), $str );
2000-11-23 02:37:50 +01:00
2000-11-26 19:03:20 +01:00
// Participants
2001-02-18 23:33:10 +01:00
$accounts = $phpgw -> acl -> get_ids_for_location ( 'run' , 1 , 'calendar' );
$users = Array ();
for ( $i = 0 ; $i < count ( $accounts ); $i ++ )
{
2001-03-18 18:39:30 +01:00
if ( intval ( $accounts [ $i ]) != $owner && ! isset ( $users [ $accounts [ $i ]]))
2001-02-18 23:33:10 +01:00
{
2001-03-18 18:39:30 +01:00
$users [ intval ( $accounts [ $i ])] = $phpgw -> common -> grab_owner_name ( intval ( $accounts [ $i ]));
if ( $phpgw -> accounts -> get_type ( intval ( $accounts [ $i ])) == 'g' )
2001-02-18 23:33:10 +01:00
{
2001-03-18 18:39:30 +01:00
$group_members = $phpgw -> acl -> get_ids_for_location ( intval ( $accounts [ $i ]), 1 , 'phpgw_group' );
2001-02-18 23:33:10 +01:00
if ( $group_members != False )
{
for ( $j = 0 ; $j < count ( $group_members ); $j ++ )
{
2001-03-16 03:41:45 +01:00
if ( $group_members [ $j ] != $owner && ! isset ( $users [ $group_members [ $j ]]))
2001-02-18 23:33:10 +01:00
{
2001-03-16 03:41:45 +01:00
$users [ $group_members [ $j ]] = $phpgw -> common -> grab_owner_name ( $group_members [ $j ]);
2001-02-18 23:33:10 +01:00
}
}
}
}
}
}
2001-03-10 05:48:19 +01:00
$str = " \n " . ' <select name="participants[]" multiple size="5">' . " \n " ;
for ( $l = 0 ; $l < count ( $event -> participants ); $l ++ )
2001-02-18 23:33:10 +01:00
{
2001-03-10 05:48:19 +01:00
$parts [ $event -> participants [ $l ]] = ' selected' ;
2001-02-18 23:33:10 +01:00
}
2001-02-11 03:38:50 +01:00
2001-02-18 23:33:10 +01:00
@ asort ( $users );
@ reset ( $users );
2001-03-16 02:54:22 +01:00
$user = Array ();
2001-02-18 23:33:10 +01:00
while ( $user = each ( $users ))
{
2001-03-16 02:54:22 +01:00
$userid = intval ( $user [ 0 ]);
2001-03-18 19:10:05 +01:00
if ( $userid != $owner && $phpgw -> accounts -> exists ( $userid ) == True )
2001-02-18 23:33:10 +01:00
{
2001-03-16 02:54:22 +01:00
$str .= ' <option value="' . $userid . '"' . $parts [ $userid ] . '>(' . $phpgw -> accounts -> get_type ( $userid ) . ') ' . $user [ 1 ] . '</option>' . " \n " ;
2001-02-18 23:33:10 +01:00
}
}
$str .= ' </select>' ;
display_item ( lang ( 'Participants' ), $str );
2000-11-23 02:37:50 +01:00
2000-11-26 19:03:20 +01:00
// I Participate
2001-02-18 23:33:10 +01:00
$participate = False ;
if ( $id )
{
2001-03-10 05:48:19 +01:00
for ( $i = 0 ; $i < count ( $event -> participants ); $i ++ )
2001-02-18 23:33:10 +01:00
{
2001-03-10 05:48:19 +01:00
if ( $event -> participants [ $i ] == $owner )
2001-02-18 23:33:10 +01:00
{
$participate = True ;
}
}
2000-11-26 19:03:20 +01:00
}
2001-03-10 05:48:19 +01:00
$str = '<input type="checkbox" name="participants[]" value="' . $owner . '"' ;
2001-02-18 23:33:10 +01:00
if ((( $id > 0 ) && ( $participate == True )) || ! isset ( $id ))
{
$str .= ' checked' ;
}
$str .= '>' ;
display_item ( $phpgw -> common -> grab_owner_name ( $owner ) . ' ' . lang ( 'Participates' ), $str );
2000-11-26 19:03:20 +01:00
2001-03-24 06:06:45 +01:00
// Categories
$c = CreateObject ( 'phpgwapi.categories' , Array ( $owner , 'calendar' ));
if ( $c -> total ( 'calendar' ) > 0 )
{
$str = " \n " . ' <select name="category" size="5">' . " \n " ;
$str .= $c -> formated_list ( 'select' , 'all' , $event -> category );
$str .= ' </select>' ;
display_item ( lang ( 'Categories' ), $str );
}
unset ( $c );
2000-11-26 19:03:20 +01:00
// Repeat Type
2001-02-18 23:33:10 +01:00
$p -> set_var ( 'hr_text' , '<hr>' );
$p -> parse ( 'output' , 'hr' , True );
$p -> set_var ( 'hr_text' , '<center><b>' . lang ( 'Repeating Event Information' ) . '</b></center><br>' );
$p -> parse ( 'output' , 'hr' , True );
2001-03-10 05:48:19 +01:00
$str = '<select name="recur_type">' ;
2001-03-09 13:23:12 +01:00
$rpt_type = Array (
RECUR_NONE ,
RECUR_DAILY ,
RECUR_WEEKLY ,
RECUR_MONTHLY_WDAY ,
RECUR_MONTHLY_MDAY ,
RECUR_YEARLY
2001-02-18 23:33:10 +01:00
);
$rpt_type_out = Array (
2001-03-09 13:23:12 +01:00
RECUR_NONE => 'None' ,
RECUR_DAILY => 'Daily' ,
RECUR_WEEKLY => 'Weekly' ,
RECUR_MONTHLY_WDAY => 'Monthly (by day)' ,
RECUR_MONTHLY_MDAY => 'Monthly (by date)' ,
RECUR_YEARLY => 'Yearly'
2001-02-18 23:33:10 +01:00
);
2001-03-09 13:23:12 +01:00
for ( $l = 0 ; $l < count ( $rpt_type ); $l ++ )
2001-02-18 23:33:10 +01:00
{
2001-03-09 13:23:12 +01:00
$str .= '<option value="' . $rpt_type [ $l ] . '"' ;
2001-03-10 05:48:19 +01:00
if ( $event -> recur_type == $rpt_type [ $l ])
2001-02-18 23:33:10 +01:00
{
$str .= ' selected' ;
}
2001-03-09 13:23:12 +01:00
$str .= '>' . lang ( $rpt_type_out [ $rpt_type [ $l ]]) . '</option>' ;
2001-02-18 23:33:10 +01:00
}
$str .= '</select>' ;
display_item ( lang ( 'Repeat Type' ), $str );
$p -> set_var ( 'field' , lang ( 'Repeat End Date' ));
2001-03-10 05:48:19 +01:00
$str = '<input type="checkbox" name="rpt_use_end" value="y"' ;
2001-03-09 13:23:12 +01:00
2001-03-10 05:48:19 +01:00
if ( $event -> recur_enddate -> year != 0 && $event -> recur_enddate -> month != 0 && $event -> recur_enddate -> mday != 0 )
2001-02-18 23:33:10 +01:00
{
$str .= ' checked' ;
2001-03-10 05:48:19 +01:00
$recur_end = mktime ( $event -> recur_enddate -> hour , $event -> recur_enddate -> min , $event -> recur_enddate -> sec , $event -> recur_enddate -> month , $event -> recur_enddate -> mday , $event -> recur_enddate -> year ) - $tz_offset ;
}
else
{
2001-03-22 19:30:35 +01:00
$recur_end = mktime ( $event -> start -> hour , $event -> start -> min , $event -> start -> sec , $event -> start -> month , $event -> start -> mday , $event -> start -> year ) + 86400 - $tz_offset ;
2001-02-18 23:33:10 +01:00
}
$str .= '>' . lang ( 'Use End Date' ) . ' ' ;
2001-03-09 13:23:12 +01:00
2001-03-10 05:48:19 +01:00
$day_html = $sb -> getDays ( 'recur_enddate[mday]' , intval ( $phpgw -> common -> show_date ( $recur_end , 'd' )));
$month_html = $sb -> getMonthText ( 'recur_enddate[month]' , intval ( $phpgw -> common -> show_date ( $recur_end , 'n' )));
$year_html = $sb -> getYears ( 'recur_enddate[year]' , intval ( $phpgw -> common -> show_date ( $recur_end , 'Y' )), intval ( $phpgw -> common -> show_date ( $recur_end , 'Y' )));
2001-02-18 23:33:10 +01:00
$str .= $phpgw -> common -> dateformatorder ( $year_html , $month_html , $day_html );
display_item ( lang ( 'Repeat End Date' ), $str );
2001-03-10 05:48:19 +01:00
$str = '<input type="checkbox" name="cal[rpt_sun]" value="' . M_SUNDAY . '"' . (( $event -> recur_data & M_SUNDAY ) ? ' checked' : '' ) . '> ' . lang ( 'Sunday' ) . ' ' ;
$str .= '<input type="checkbox" name="cal[rpt_mon]" value="' . M_MONDAY . '"' . (( $event -> recur_data & M_MONDAY ) ? ' checked' : '' ) . '> ' . lang ( 'Monday' ) . ' ' ;
$str .= '<input type="checkbox" name="cal[rpt_tue]" value="' . M_TUESDAY . '"' . (( $event -> recur_data & M_TUESDAY ) ? ' checked' : '' ) . '> ' . lang ( 'Tuesday' ) . ' ' ;
$str .= '<input type="checkbox" name="cal[rpt_wed]" value="' . M_WEDNESDAY . '"' . (( $event -> recur_data & M_WEDNESDAY ) ? ' checked' : '' ) . '> ' . lang ( 'Wednesday' ) . ' ' ;
$str .= '<input type="checkbox" name="cal[rpt_thu]" value="' . M_THURSDAY . '"' . (( $event -> recur_data & M_THURSDAY ) ? ' checked' : '' ) . '> ' . lang ( 'Thursday' ) . ' ' ;
$str .= '<input type="checkbox" name="cal[rpt_fri]" value="' . M_FRIDAY . '"' . (( $event -> recur_data & M_FRIDAY ) ? ' checked' : '' ) . '> ' . lang ( 'Friday' ) . ' ' ;
$str .= '<input type="checkbox" name="cal[rpt_sat]" value="' . M_SATURDAY . '"' . (( $event -> recur_data & M_SATURDAY ) ? ' checked' : '' ) . '> ' . lang ( 'Saturday' ) . ' ' ;
2001-02-18 23:33:10 +01:00
display_item ( lang ( 'Repeat Day' ) . '<br>' . lang ( '(for weekly)' ), $str );
2001-03-10 05:48:19 +01:00
display_item ( lang ( 'Frequency' ), '<input name="recur_interval" size="4" maxlength="4" value="' . $event -> recur_interval . '">' );
2001-02-18 23:33:10 +01:00
$p -> set_var ( 'submit_button' , lang ( 'Submit' ));
if ( $id > 0 )
{
2001-03-09 13:23:12 +01:00
$p -> set_var ( 'action_url_button' , $phpgw -> link ( '/' . $phpgw_info [ 'flags' ][ 'currentapp' ] . '/delete.php' , 'id=' . $id ));
2001-02-18 23:33:10 +01:00
$p -> set_var ( 'action_text_button' , lang ( 'Delete' ));
$p -> set_var ( 'action_confirm_button' , " onClick= \" return confirm(' " . lang ( " Are you sure \\ nyou want to \\ ndelete this entry ? \\ n \\ nThis will delete \\ nthis entry for all users. " ) . " ') \" " );
$p -> parse ( 'delete_button' , 'form_button' );
$p -> pparse ( 'out' , 'edit_entry_end' );
}
else
{
$p -> set_var ( 'delete_button' , '' );
$p -> pparse ( 'out' , 'edit_entry_end' );
}
$phpgw -> common -> phpgw_footer ();
2000-08-18 05:24:22 +02:00
?>