2005-04-15 20:33:13 +00:00
< ?
2025-01-29 03:30:48 +00:00
/*
* This file is part of the 'Science Fair In A Box' project
* SFIAB Website : http :// www . sfiab . ca
*
* Copyright ( C ) 2005 Sci - Tech Ontario Inc < info @ scitechontario . org >
* Copyright ( C ) 2005 James Grant < james @ lightbox . org >
*
* 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 , version 2.
*
* This program is distributed in the hope that it will be useful ,
* but WITHOUT ANY WARRANTY ; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE . See the GNU
* General Public License for more details .
*
* You should have received a copy of the GNU General Public License
* along with this program ; see the file COPYING . If not , write to
* the Free Software Foundation , Inc . , 59 Temple Place - Suite 330 ,
* Boston , MA 02111 - 1307 , USA .
*/
2005-04-15 20:33:13 +00:00
?>
< ?
2025-01-29 03:30:48 +00:00
require_once ( '../common.inc.php' );
require_once ( '../user.inc.php' );
user_auth_required ( 'committee' , 'admin' );
$round_str = array ( 'timeslot' => 'Judging Timeslot' ,
'divisional1' => 'Divisional Round 1' ,
'divisional2' => 'Divisional Round 2' ,
'grand' => 'Grand Awards' ,
'special' => 'Special Awards' );
if ( array_key_exists ( 'action' , $_POST ))
$action = $_POST [ 'action' ];
else if ( array_key_exists ( 'action' , $_GET ))
$action = $_GET [ 'action' ];
else
$action = '' ;
if ( array_key_exists ( 'round_id' , $_POST ))
$round_id = intval ( $_POST [ 'round_id' ]);
else if ( array_key_exists ( 'round_id' , $_GET ))
$round_id = intval ( $_GET [ 'round_id' ]);
else
$round_id = 0 ;
if ( array_key_exists ( 'timeslot_id' , $_POST ))
$timeslot_id = intval ( $_POST [ 'timeslot_id' ]);
else if ( array_key_exists ( 'timeslot_id' , $_GET ))
$timeslot_id = intval ( $_GET [ 'timeslot_id' ]);
else
$timeslot_id = 0 ;
if ( $action == 'saveround' ) {
2009-09-09 00:26:12 +00:00
$save = true ;
/* Sanity check all the values */
$y = intval ( $_POST [ 'date_year' ]);
$m = intval ( $_POST [ 'date_month' ]);
$d = intval ( $_POST [ 'date_day' ]);
2025-01-29 03:30:48 +00:00
if ( $y && $m && $d )
$date = " $y - $m - $d " ;
2009-09-09 00:26:12 +00:00
else {
$save = false ;
2025-01-29 03:30:48 +00:00
message_push ( error ( i18n ( 'Date is required' )));
2005-04-15 20:33:13 +00:00
}
2009-09-09 00:26:12 +00:00
2025-01-29 03:30:48 +00:00
if ( array_key_exists ( 'starttime_hour' , $_POST ) && array_key_exists ( 'starttime_minute' , $_POST )) {
$starttime = sprintf ( '%02d:%02d:00' , intval ( $_POST [ 'starttime_hour' ]), intval ( $_POST [ 'starttime_minute' ]));
2009-09-09 00:26:12 +00:00
} else {
$save = false ;
2025-01-29 03:30:48 +00:00
message_push ( error ( i18n ( 'Start Time is required' )));
2005-04-15 20:33:13 +00:00
}
2025-01-29 03:30:48 +00:00
if ( array_key_exists ( 'endtime_hour' , $_POST ) && array_key_exists ( 'endtime_minute' , $_POST )) {
$endtime = sprintf ( '%02d:%02d:00' , intval ( $_POST [ 'endtime_hour' ]), intval ( $_POST [ 'endtime_minute' ]));
2009-09-09 00:26:12 +00:00
} else {
$save = false ;
2025-01-29 03:30:48 +00:00
message_push ( error ( i18n ( 'End Time is required' )));
2005-04-15 20:33:13 +00:00
}
2009-09-09 00:26:12 +00:00
$type = $_POST [ 'type' ];
2025-01-29 03:30:48 +00:00
if ( ! array_key_exists ( $type , $round_str )) {
2009-09-09 00:26:12 +00:00
$save = false ;
message_push ( error ( i18n ( 'Invalid type specified' )));
2005-04-15 20:33:13 +00:00
}
2024-12-06 20:54:02 -05:00
$name = stripslashes ( $_POST [ 'name' ]);
2009-09-09 00:26:12 +00:00
2025-01-29 03:30:48 +00:00
if ( $save == true ) {
if ( $round_id == 0 ) {
2009-09-09 00:26:12 +00:00
/* New entry */
2025-02-04 21:48:23 +00:00
$stmt = $pdo -> prepare ( " INSERT INTO judges_timeslots (round_id,year) VALUES('0',?) " );
$stmt -> execute ([ $config [ 'FAIRYEAR' ]]);
2024-12-06 20:54:02 -05:00
$round_id = $pdo -> lastInsertId ();
2009-09-09 00:26:12 +00:00
}
2025-02-04 21:48:23 +00:00
$stmt = $pdo -> prepare ( " UPDATE judges_timeslots SET `date`=?,
starttime = ? , endtime = ? ,
`name` = ? ,
`type` = ? WHERE id = ? " );
$stmt -> execute ([ $date , $starttime , $endtime , $name , $type , $round_id ]);
2009-09-09 00:26:12 +00:00
2024-12-17 01:34:35 -05:00
show_pdo_errors_if_any ( $pdo );
2025-01-29 03:30:48 +00:00
message_push ( happy ( i18n ( 'Round successfully saved' )));
2009-09-09 00:26:12 +00:00
$action = '' ;
2005-04-15 20:33:13 +00:00
}
2025-01-29 03:30:48 +00:00
}
2009-09-09 00:26:12 +00:00
2025-01-29 03:30:48 +00:00
if ( $action == 'deleteround' ) {
2025-02-04 21:48:23 +00:00
$stmt = $pdo -> prepare ( " DELETE FROM judges_timeslots WHERE id=? " );
$stmt -> execute ([ $round_id ]);
2009-09-09 00:26:12 +00:00
/* Also delete all timeslots */
2025-01-29 03:30:48 +00:00
2025-02-04 21:48:23 +00:00
$stmt = $pdo -> prepare ( " DELETE FROM judges_timeslots WHERE round_id=? " );
$stmt -> execute ([ $round_id ]);
2025-01-29 03:30:48 +00:00
message_push ( happy ( i18n ( 'Round successfully removed' )));
2009-09-09 00:26:12 +00:00
$action = '' ;
2025-01-29 03:30:48 +00:00
}
if ( $action == 'deletetimeslot' ) {
2025-02-04 21:48:23 +00:00
$stmt = $pdo -> prepare ( " DELETE FROM judges_timeslots WHERE id=? " );
$stmt -> execute ([ $timeslot_id ]);
2025-01-29 03:30:48 +00:00
message_push ( happy ( i18n ( 'Timeslot successfully removed' )));
2009-09-09 00:26:12 +00:00
$action = '' ;
2025-01-29 03:30:48 +00:00
}
2009-09-09 00:26:12 +00:00
2025-01-29 03:30:48 +00:00
if ( $action == 'savetimeslot' ) {
2009-09-09 00:26:12 +00:00
$save = true ;
2025-02-04 21:48:23 +00:00
$q = $pdo -> prepare ( " SELECT * FROM judges_timeslots WHERE id=? " );
$q -> execute ([ $round_id ]);
2024-12-06 20:54:02 -05:00
$round_data = $q -> fetch ( PDO :: FETCH_ASSOC );
2009-09-09 00:26:12 +00:00
$date = $round_data [ 'date' ];
2025-01-29 03:30:48 +00:00
if ( array_key_exists ( 'starttime_hour' , $_POST ) && array_key_exists ( 'starttime_minute' , $_POST )) {
$starttime = sprintf ( '%02d:%02d:00' , intval ( $_POST [ 'starttime_hour' ]), intval ( $_POST [ 'starttime_minute' ]));
2009-09-09 00:26:12 +00:00
} else {
$save = false ;
2025-01-29 03:30:48 +00:00
message_push ( error ( i18n ( 'Start Time is required' )));
2005-04-15 20:33:13 +00:00
}
2025-01-29 03:30:48 +00:00
if ( array_key_exists ( 'endtime_hour' , $_POST ) && array_key_exists ( 'endtime_minute' , $_POST )) {
$endtime = sprintf ( '%02d:%02d:00' , intval ( $_POST [ 'endtime_hour' ]), intval ( $_POST [ 'endtime_minute' ]));
2009-09-09 00:26:12 +00:00
} else {
$save = false ;
2025-01-29 03:30:48 +00:00
message_push ( error ( i18n ( 'End Time is required' )));
2009-09-09 00:26:12 +00:00
}
2005-04-15 20:33:13 +00:00
2025-01-29 03:30:48 +00:00
if ( $save == true ) {
if ( $timeslot_id == 0 ) {
2009-09-09 00:26:12 +00:00
/* New entry */
2025-02-04 21:48:23 +00:00
$stmt = $pdo -> prepare ( " INSERT INTO judges_timeslots (round_id,date,type,year) VALUES(?,
? , 'timeslot' , ? ) " );
$stmt -> execute ([ $round_id , $date , $config [ 'FAIRYEAR' ]]);
2024-12-06 20:54:02 -05:00
$timeslot_id = $pdo -> lastInsertId ();
2005-04-15 20:33:13 +00:00
}
2009-09-09 00:26:12 +00:00
2025-02-04 21:48:23 +00:00
$stmt = $pdo -> prepare ( " UPDATE judges_timeslots SET starttime=?, endtime=?
WHERE id = ? " );
$stmt -> execute ([ $starttime , $endtime , $timeslot_id ]);
2009-09-09 00:26:12 +00:00
2025-01-03 15:15:13 -05:00
show_pdo_errors_if_any ( $pdo );
2025-01-29 03:30:48 +00:00
message_push ( happy ( i18n ( 'Timeslot successfully saved' )));
2009-09-09 00:26:12 +00:00
$action = '' ;
2005-04-15 20:33:13 +00:00
}
2025-01-29 03:30:48 +00:00
}
if ( $action == 'savemultiple' ) {
$save = true ;
2009-09-09 00:26:12 +00:00
$addnum = intval ( $_POST [ 'addnum' ]);
2025-01-29 03:30:48 +00:00
$duration = intval ( $_POST [ 'duration' ]);
2009-09-09 00:26:12 +00:00
$break = intval ( $_POST [ 'break' ]);
2025-01-29 03:30:48 +00:00
if ( array_key_exists ( 'starttime_hour' , $_POST ) && array_key_exists ( 'starttime_minute' , $_POST ) && $addnum && $duration ) {
2025-02-04 21:48:23 +00:00
$q = $pdo -> prepare ( " SELECT * FROM judges_timeslots WHERE id=? " );
$q -> execute ([ $round_id ]);
2024-12-06 20:54:02 -05:00
$round_data = $q -> fetch ( PDO :: FETCH_ASSOC );
2009-09-09 00:26:12 +00:00
$date = $round_data [ 'date' ];
2025-01-29 03:30:48 +00:00
$hr = intval ( $_POST [ 'starttime_hour' ]);
$min = intval ( $_POST [ 'starttime_minute' ]);
2009-09-09 00:26:12 +00:00
2025-01-29 03:30:48 +00:00
$tt = $duration + $break ;
2009-09-09 00:26:12 +00:00
2025-01-29 03:30:48 +00:00
for ( $x = 0 ; $x < $addnum ; $x ++ ) {
$q = $pdo -> prepare ( " SELECT \t DATE_ADD(' $date $hr : $min :00', INTERVAL $duration MINUTE) AS endtime,
2009-09-09 00:26:12 +00:00
DATE_ADD ( '$date $hr:$min:00' , INTERVAL $tt MINUTE ) AS startnext " );
2024-12-06 20:54:02 -05:00
$q -> execute ();
2025-01-03 15:15:13 -05:00
show_pdo_errors_if_any ( $pdo );
2025-01-29 03:30:48 +00:00
$r = $q -> fetch ( PDO :: FETCH_OBJ );
list ( $ed , $et ) = split ( ' ' , $r -> endtime );
list ( $nd , $nt ) = split ( ' ' , $r -> startnext );
2006-01-26 21:42:04 +00:00
2025-01-29 03:30:48 +00:00
$starttime = sprintf ( '%02d:%02d:00' , $hr , $min );
2009-09-09 00:26:12 +00:00
2024-12-06 20:54:02 -05:00
$stmt = $pdo -> prepare ( " INSERT INTO judges_timeslots (date,type,round_id,starttime,endtime,year) VALUES (
2009-09-09 00:26:12 +00:00
'$date' , 'timeslot' , '{$round_data[' id ']}' ,
'$starttime' , '$et' ,
'{$config[' FAIRYEAR ']}' ) " );
2024-12-06 20:54:02 -05:00
$stmt -> execute ();
2025-01-03 15:15:13 -05:00
show_pdo_errors_if_any ( $pdo );
2025-01-29 03:30:48 +00:00
$date = $nd ;
list ( $s_h , $s_m , $s_s ) = split ( ':' , $nt );
list ( $e_h , $e_m , $e_s ) = split ( ':' , $et );
message_push ( happy ( i18n ( 'Adding timeslot: %1' , array ( " $date $hr : $min - $e_h : $e_m " ))));
$hr = $s_h ;
$min = $s_m ;
2006-01-26 21:42:04 +00:00
}
2009-09-09 00:26:12 +00:00
$action = '' ;
} else {
2025-01-29 03:30:48 +00:00
message_push ( error ( i18n ( 'All fields are required to add multiple timeslots' )));
2006-01-26 21:42:04 +00:00
}
2025-01-29 03:30:48 +00:00
}
2005-04-15 20:33:13 +00:00
2025-01-29 03:30:48 +00:00
if ( $action == '' ) {
send_header ( 'Judging Rounds and Timeslots' ,
array ( 'Committee Main' => 'committee_main.php' ,
2009-09-09 00:26:12 +00:00
'Administration' => 'admin/index.php' ,
'Judges' => 'admin/judges.php' ));
2025-01-29 03:30:48 +00:00
} else {
send_header ( 'Judging Rounds and Timeslots' ,
array ( 'Committee Main' => 'committee_main.php' ,
2009-09-09 00:26:12 +00:00
'Administration' => 'admin/index.php' ,
'Judges' => 'admin/judges.php' ,
'Judging Rounds and Timeslots' => 'admin/judges_timeslots.php' ));
2025-01-29 03:30:48 +00:00
}
echo '<br />' ;
2005-04-15 20:33:13 +00:00
2025-01-29 03:30:48 +00:00
if ( $action == 'addround' || $action == 'editround' ) {
echo '<form method="post" action="judges_timeslots.php">' ;
2009-09-09 00:26:12 +00:00
echo " <input type= \" hidden \" name= \" action \" value= \" saveround \" > \n " ;
echo " <input type= \" hidden \" name= \" round_id \" value= \" $round_id\ " > \n " ;
2025-01-29 03:30:48 +00:00
if ( $action == 'addround' ) {
echo '<h3>Add New Judging Round</h3>' ;
2009-09-09 00:26:12 +00:00
$r = array ();
$r [ 'date' ] = $config [ 'dates' ][ 'fairdate' ];
} else {
2025-01-29 03:30:48 +00:00
echo '<h3>Edit Judging Round</h3>' ;
2025-02-04 21:48:23 +00:00
$q = $pdo -> prepare ( " SELECT * FROM judges_timeslots WHERE id=? " );
$q -> execute ([ $round_id ]);
2025-01-29 03:30:48 +00:00
if ( $q -> rowCount () != 1 ) {
echo " UNKNOWN ROUND $round_id " ;
2009-09-09 00:26:12 +00:00
exit ;
}
2024-12-06 20:54:02 -05:00
$r = $q -> fetch ( PDO :: FETCH_ASSOC );
2006-01-26 21:42:04 +00:00
}
2009-09-09 00:26:12 +00:00
2025-01-29 03:30:48 +00:00
echo '<table>' ;
echo '<tr><td>' . i18n ( 'Round Type' ) . ':</td><td>' ;
echo '<select name="type">' ;
foreach ( $round_str as $k => $v ) {
if ( $k == 'timeslot' )
continue ; /* Don't let them add a timeslot directly */
$s = ( $r [ 'type' ] == $k ) ? 'selected="selected"' : '' ;
2009-09-09 00:26:12 +00:00
echo " <option value= \" $k\ " $s > $v </ option > " ;
2006-01-26 21:42:04 +00:00
}
2025-01-29 03:30:48 +00:00
echo '</select>' ;
2006-01-26 21:42:04 +00:00
2025-01-29 03:30:48 +00:00
echo '<tr><td>' . i18n ( 'Name' ) . ':</td><td>' ;
echo '<input type="textbox" name="name" value="' . get_value_from_array ( $r , 'name' ) . '" width="60" /></td></tr>' ;
2006-01-26 21:42:04 +00:00
2025-01-29 03:30:48 +00:00
echo '<tr><td>' . i18n ( 'Date' ) . ':</td><td>' ;
emit_date_selector ( 'date' , $r [ 'date' ]);
2006-01-26 21:42:04 +00:00
2025-01-29 03:30:48 +00:00
echo '</td></tr>' ;
echo '<tr><td>' . i18n ( 'Start Time' ) . ':</td><td>' ;
emit_time_selector ( 'starttime' , get_value_from_array ( $r , 'starttime' ));
2006-01-26 21:42:04 +00:00
2025-01-29 03:30:48 +00:00
echo '</td></tr>' ;
echo '<tr><td>' . i18n ( 'End Time' ) . ':</td><td>' ;
emit_time_selector ( 'endtime' , get_value_from_array ( $r , 'endtime' ));
2006-01-26 21:42:04 +00:00
2025-01-29 03:30:48 +00:00
echo '</td></tr>' ;
echo '</table>' ;
2006-01-26 21:42:04 +00:00
2025-01-29 03:30:48 +00:00
echo '<input type="submit" value="' . i18n ( 'Save' ) . '" />' ;
echo '</form>' ;
}
2009-09-09 00:26:12 +00:00
2025-01-29 03:30:48 +00:00
if ( $action == 'addtimeslot' || $action == 'edittimeslot' ) {
echo '<form method="post" action="judges_timeslots.php">' ;
2009-09-09 00:26:12 +00:00
echo " <input type= \" hidden \" name= \" action \" value= \" savetimeslot \" > \n " ;
echo " <input type= \" hidden \" name= \" round_id \" value= \" $round_id\ " > \n " ;
echo " <input type= \" hidden \" name= \" timeslot_id \" value= \" $timeslot_id\ " > \n " ;
2005-04-15 20:33:13 +00:00
2025-02-04 21:48:23 +00:00
$q = $pdo -> prepare ( " SELECT * FROM judges_timeslots WHERE id=? " );
$q -> execute ([ $round_id ]);
2024-12-06 20:54:02 -05:00
$round_data = $q -> fetch ( PDO :: FETCH_ASSOC );
2005-04-15 20:33:13 +00:00
2025-01-29 03:30:48 +00:00
if ( $action == 'addtimeslot' ) {
echo '<h3>Add New Judging Timeslot</h3>' ;
2009-09-09 00:26:12 +00:00
$r = array ();
$r [ 'date' ] = $round_data [ 'date' ];
} else {
2025-01-29 03:30:48 +00:00
echo '<h3>Edit Judging Timeslot</h3>' ;
2025-02-04 21:48:23 +00:00
$q = $pdo -> prepare ( " SELECT * FROM judges_timeslots WHERE id=? " );
$q -> execute ([ $timeslot_id ]);
2025-01-29 03:30:48 +00:00
if ( $q -> rowCount () != 1 ) {
echo " UNKNOWN ROUND $round_id " ;
2009-09-09 00:26:12 +00:00
exit ;
}
2024-12-06 20:54:02 -05:00
$r = $q -> fetch ( PDO :: FETCH_ASSOC );
2005-04-15 20:33:13 +00:00
}
2025-01-29 03:30:48 +00:00
echo '<table>' ;
echo '<tr><td>' . i18n ( 'Round Type' ) . " :</td><td> { $round_str [ $round_data [ 'type' ]] } </td></tr> " ;
echo '<tr><td>' . i18n ( 'Name' ) . " :</td><td> { $round_data [ 'name' ] } </td></tr> " ;
2005-04-15 20:33:13 +00:00
2025-01-29 03:30:48 +00:00
echo '<tr><td>' . i18n ( 'Start Time' ) . ':</td><td>' ;
emit_time_selector ( 'starttime' , $r [ 'starttime' ]);
2005-04-15 20:33:13 +00:00
2025-01-29 03:30:48 +00:00
echo '</td></tr>' ;
echo '<tr><td>' . i18n ( 'End Time' ) . ':</td><td>' ;
emit_time_selector ( 'endtime' , $r [ 'endtime' ]);
2005-04-15 20:33:13 +00:00
2025-01-29 03:30:48 +00:00
echo '</td></tr>' ;
echo '</table>' ;
2005-04-15 20:33:13 +00:00
2025-01-29 03:30:48 +00:00
echo '<input type="submit" value="' . i18n ( 'Save' ) . '" />' ;
echo '</form>' ;
}
2005-04-15 20:33:13 +00:00
2025-01-29 03:30:48 +00:00
if ( $action == 'addmultiple' ) {
echo '<h3>Add Multiple New Judging Timeslots</h3>' ;
2005-04-15 20:33:13 +00:00
2025-01-29 03:30:48 +00:00
echo '<form method="post" action="judges_timeslots.php">' ;
2009-09-09 00:26:12 +00:00
echo " <input type= \" hidden \" name= \" action \" value= \" savemultiple \" > \n " ;
echo " <input type= \" hidden \" name= \" round_id \" value= \" $round_id\ " > \n " ;
echo " <input type= \" hidden \" name= \" timeslot_id \" value= \" $timeslot_id\ " > \n " ;
2025-02-04 21:48:23 +00:00
$q = $pdo -> prepare ( " SELECT * FROM judges_timeslots WHERE id=? " );
$q -> execute ([ $round_id ]);
2024-12-06 20:54:02 -05:00
$round_data = $q -> fetch ( PDO :: FETCH_ASSOC );
2009-09-09 00:26:12 +00:00
2025-01-29 03:30:48 +00:00
echo '<table border="0">' ;
echo '<tr><td>' . i18n ( 'Round Type' ) . " :</td><td> { $round_str [ $round_data [ 'type' ]] } </td></tr> " ;
echo '<tr><td>' . i18n ( 'Name' ) . " :</td><td> { $round_data [ 'name' ] } </td></tr> " ;
echo '<tr><td>' . i18n ( 'Add' ) . '</td><td>' ;
echo '<input type="text" name="addnum" size="4"> ' ;
echo i18n ( 'new timeslots' );
echo '</td></tr>' ;
echo '<tr><td>' . i18n ( 'Starting timeslots at' ) . '</td><td>' ;
emit_time_selector ( 'starttime' );
echo '</td></tr>' ;
echo '<tr><td>' . i18n ( 'With a duration of' ) . '</td><td>' ;
echo '<input type="text" name="duration" size="4"> ' ;
echo i18n ( 'minutes' ) . '</td></tr>' ;
echo '<tr><td>' . i18n ( 'And a break of' ) . '</td><td>' ;
echo '<input type="text" name="break" size="4"> ' ;
echo i18n ( 'minutes' ) . '</td></tr>' ;
echo '<tr><td colspan="2">' ;
echo '<input type="submit" value="' . i18n ( 'Add these timeslots' ) . '">' ;
echo '</td></tr>' ;
echo '</table>' ;
echo '</form>' ;
}
if ( $action == '' ) {
echo '<A href="judges_timeslots.php?action=addround&round_id=0">' . i18n ( 'Add new round' ) . '</a> <br />' ;
echo '<br />' ;
echo '<table class="summarytable">' ;
echo '<tr>' ;
echo '<th>' . i18n ( 'Date' ) . '</th>' ;
echo '<th>' . i18n ( 'Start Time' ) . '</th>' ;
echo '<th>' . i18n ( 'End Time' ) . '</th>' ;
echo '<th>' . i18n ( 'Judging Round' ) . '</th>' ;
echo '<th>' . i18n ( 'Actions' ) . '</th>' ;
echo '</tr>' ;
2025-02-04 21:48:23 +00:00
$q = $pdo -> prepare ( " SELECT * FROM judges_timeslots WHERE year=? AND `type`!='timeslot' ORDER BY date,starttime " );
$q -> execute ([ $config [ 'FAIRYEAR' ]]);
2025-01-29 03:30:48 +00:00
while ( $r = $q -> fetch ( PDO :: FETCH_OBJ )) {
echo '<tr>' ;
2025-02-04 21:48:23 +00:00
$qq = $pdo -> prepare ( " SELECT * FROM judges_timeslots WHERE round_id=? ORDER BY `date`,`starttime` " );
$qq -> execute ([ $r -> id ]);
2025-01-29 03:30:48 +00:00
$c = $qq -> rowCount () + 1 ;
echo " <td rowspan= \" $c\ " >< b > " . format_date( $r->date ) . '</b></td>';
echo '<td align="center"><b>' . format_time ( $r -> starttime ) . '</b><br/>' ;
echo '</td>' ;
echo '<td align="center"><b>' . format_time ( $r -> endtime ) . '</b></td>' ;
echo " <td align= \" center \" ><b> { $r -> name } ( " . i18n ( $round_str [ $r -> type ]) . ')</b></td>' ;
echo ' <td align="center">' ;
2009-09-09 00:26:12 +00:00
echo " <a href= \" judges_timeslots.php?action=editround&round_id= { $r -> id } \" ><img border= \" 0 \" src= \" { $config [ 'SFIABDIRECTORY' ] } /images/16/edit. { $config [ 'icon_extension' ] } \" ></a> " ;
2025-01-29 03:30:48 +00:00
echo ' ' ;
2009-09-09 00:26:12 +00:00
echo " <a onclick= \" return confirmClick('Are you sure you want to remove this round?') \" href= \" judges_timeslots.php?action=deleteround&round_id= { $r -> id } \" ><img border= \" 0 \" src= \" { $config [ 'SFIABDIRECTORY' ] } /images/16/button_cancel. { $config [ 'icon_extension' ] } \" ></a> " ;
2005-04-15 20:33:13 +00:00
2009-09-09 00:26:12 +00:00
echo " <A href= \" judges_timeslots.php?action=addtimeslot&round_id= { $r -> id } \" >(new)</a> " ;
echo " <A href= \" judges_timeslots.php?action=addmultiple&round_id= { $r -> id } \" >(multiple)</a><br /> " ;
2005-04-15 20:33:13 +00:00
echo " </td> \n " ;
2025-01-29 03:30:48 +00:00
echo '</tr>' ;
2009-09-09 00:26:12 +00:00
2025-01-29 03:30:48 +00:00
while ( $rr = $qq -> fetch ( PDO :: FETCH_OBJ )) {
echo '<tr>' ;
// echo "<td></td>";
echo '<td align="right">' . format_time ( $rr -> starttime ) . '</td>' ;
echo '<td align="right">' . format_time ( $rr -> endtime ) . '</td>' ;
echo '<td align="center">' . i18n ( $round_str [ $rr -> type ]) . '</td>' ;
2009-09-09 00:26:12 +00:00
2025-01-29 03:30:48 +00:00
echo ' <td align="center">' ;
2009-09-09 00:26:12 +00:00
echo " <a href= \" judges_timeslots.php?action=edittimeslot&round_id= { $r -> id } ×lot_id= { $rr -> id } \" ><img border= \" 0 \" src= \" { $config [ 'SFIABDIRECTORY' ] } /images/16/edit. { $config [ 'icon_extension' ] } \" ></a> " ;
2025-01-29 03:30:48 +00:00
echo ' ' ;
2009-09-09 00:26:12 +00:00
echo " <a onclick= \" return confirmClick('Are you sure you want to remove this timeslot?') \" href= \" judges_timeslots.php?action=deletetimeslot×lot_id= { $rr -> id } \" ><img border= \" 0 \" src= \" { $config [ 'SFIABDIRECTORY' ] } /images/16/button_cancel. { $config [ 'icon_extension' ] } \" ></a> " ;
echo " </td> \n " ;
2025-01-29 03:30:48 +00:00
echo '</tr>' ;
2009-09-09 00:26:12 +00:00
}
2005-04-15 20:33:13 +00:00
}
2025-01-29 03:30:48 +00:00
echo '</table>' ;
}
2005-04-15 20:33:13 +00:00
2025-01-29 03:30:48 +00:00
send_footer ();
2005-04-15 20:33:13 +00:00
?>