2005-04-19 18:36:03 +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-19 18:36:03 +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' );
require_once ( 'judges.inc.php' );
$action = null ;
$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' , $_GET ))
$action = $_GET [ 'action' ];
if ( array_key_exists ( 'action' , $_POST ))
$action = $_POST [ 'action' ];
if ( get_value_from_array ( $_GET , 'action' ) && $action == 'delete' ) {
2009-09-09 00:26:12 +00:00
$id = intval ( $_GET [ 'delete' ]);
2025-02-09 17:24:37 +00:00
$stmt = $pdo -> prepare ( " DELETE FROM judges_teams_timeslots_link WHERE id=? " );
$stmt -> execute ([ $id ]);
2025-01-29 03:30:48 +00:00
message_push ( happy ( i18n ( 'Judging team timeslot successfully removed' )));
}
2009-09-09 00:26:12 +00:00
2025-01-29 03:30:48 +00:00
if ( array_key_exists ( 'empty' , $_GET ) && $action == 'empty' ) {
2009-09-09 00:26:12 +00:00
$id = intval ( $_GET [ 'empty' ]);
2025-02-09 17:24:37 +00:00
$stmt = $pdo -> prepare ( " DELETE FROM judges_teams_timeslots_link WHERE judges_teams_id=? " );
$stmt -> execute ([ $id ]);
2025-01-29 03:30:48 +00:00
message_push ( happy ( i18n ( 'Judging team timeslots successfully removed' )));
}
if ( $action == 'assign' ) {
// the db handles the uniqueness (to ensure the same timeslot isnt assigned to the same team more than once)
// so all we'll do here is just mass insert without regards for whats already there.
if ( count ( $_POST [ 'teams' ]) && count ( $_POST [ 'timeslots' ])) {
foreach ( $_POST [ 'teams' ] AS $tm ) {
foreach ( $_POST [ 'timeslots' ] AS $ts ) {
2024-12-06 20:54:02 -05:00
$stmt = $pdo -> prepare ( " INSERT INTO judges_teams_timeslots_link (judges_teams_id,judges_timeslots_id,year)
2025-02-09 17:24:37 +00:00
VALUES ( ? , ? , ? ) " );
$stmt -> execute ([ $tm , $ts , $config [ 'FAIRYEAR' ]]);
2009-09-09 00:26:12 +00:00
}
}
2025-01-29 03:30:48 +00:00
message_push ( happy ( i18n ( '%1 Timeslots assigned to %2 teams' , array ( count ( $_POST [ 'timeslots' ]), count ( $_POST [ 'teams' ])))));
2009-09-09 00:26:12 +00:00
} else {
2025-01-29 03:30:48 +00:00
message_push ( error ( i18n ( 'You must select both team(s) and timeslot(s) to assign' )));
2009-09-09 00:26:12 +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
send_header ( 'Judging Teams Timeslots' ,
array ( 'Committee Main' => 'committee_main.php' ,
'Administration' => 'admin/index.php' ,
'Judges' => 'admin/judges.php' ));
2009-09-09 00:26:12 +00:00
2025-01-29 03:30:48 +00:00
?>
2005-04-19 18:36:03 +00:00
< script language = " javascript " type = " text/javascript " >
function checkall ( what )
{
2009-09-09 00:26:12 +00:00
for ( i = 0 ; i < document . forms . teamstimeslots . elements . length ; i ++ ) {
2005-04-19 18:36:03 +00:00
if ( document . forms . teamstimeslots . elements [ i ] . name == what + " [] " )
document . forms . teamstimeslots . elements [ i ] . checked = true ;
}
return false ;
}
function checknone ( what )
{
2009-09-09 00:26:12 +00:00
for ( i = 0 ; i < document . forms . teamstimeslots . elements . length ; i ++ ) {
2005-04-19 18:36:03 +00:00
if ( document . forms . teamstimeslots . elements [ i ] . name == what + " [] " )
document . forms . teamstimeslots . elements [ i ] . checked = false ;
}
return false ;
}
function checkinvert ( what )
{
2009-09-09 00:26:12 +00:00
for ( i = 0 ; i < document . forms . teamstimeslots . elements . length ; i ++ ) {
2005-04-19 18:36:03 +00:00
if ( document . forms . teamstimeslots . elements [ i ] . name == what + " [] " )
document . forms . teamstimeslots . elements [ i ] . checked =! document . forms . teamstimeslots . elements [ i ] . checked ;
}
return false ;
}
</ script >
< ?
2025-01-29 03:30:48 +00:00
echo '<br />' ;
echo '<form name="teamstimeslots" method="post" action="judges_teams_timeslots.php">' ;
echo '<input type="hidden" name="action" value="assign">' ;
echo 'Choose timeslots to assign: <br />' ;
echo '<a href="" onclick="return checkall(\'timeslots\')">select all</a>' ;
echo ' | ' ;
echo '<a href="" onclick="return checknone(\'timeslots\')">select none</a>' ;
echo ' | ' ;
echo '<a href="" onclick="return checkinvert(\'timeslots\')">invert selection</a>' ;
2025-02-09 17:24:37 +00:00
$q = $pdo -> prepare ( " SELECT DISTINCT(date) AS d FROM judges_timeslots WHERE year=? " );
$q -> execute ([ $config [ 'FAIRYEAR' ]]);
2025-01-29 03:30:48 +00:00
if ( $q -> rowCount () > 1 )
$show_date = true ;
else
$show_date = false ;
echo '<table class="summarytable">' ;
echo '<tr>' ;
echo '<th> </th>' ;
if ( $show_date )
echo '<th>' . i18n ( 'Date' ) . '</th>' ;
echo '<th>' . i18n ( 'Start Time' ) . '</th>' ;
echo '<th>' . i18n ( 'End Time' ) . '</th>' ;
echo " </tr> \n " ;
$q = $pdo -> prepare ( " SELECT * FROM judges_timeslots
2025-02-09 17:24:37 +00:00
WHERE year = ?
2009-09-09 00:26:12 +00:00
AND round_id = '0' ORDER BY date , starttime " );
2025-02-09 17:24:37 +00:00
$q -> execute ([ $config [ 'FAIRYEAR' ]]);
2025-01-29 03:30:48 +00:00
while ( $r = $q -> fetch ( PDO :: FETCH_OBJ )) {
echo '<tr>' ;
$span = $show_date ? 4 : 3 ;
echo " <td colspan= \" $span\ " > { $r -> name } ( " . $round_str[$r->type] . ')</td>';
$qq = $pdo -> prepare ( " SELECT * FROM judges_timeslots
2025-02-09 17:24:37 +00:00
WHERE round_id = ? ORDER BY date , starttime " );
$qq -> execute ([ $r -> id ]);
2025-01-29 03:30:48 +00:00
while ( $rr = $qq -> fetch ( PDO :: FETCH_OBJ )) {
echo '<tr>' ;
echo " <td><input type= \" checkbox \" name= \" timeslots[] \" value= \" { $rr -> id } \" /></td> " ;
if ( $show_date )
echo '<td>' . format_date ( $r -> date ) . '</td>' ;
echo '<td align="center">' . format_time ( $rr -> starttime ) . '</td>' ;
echo '<td align="center">' . format_time ( $rr -> endtime ) . '</td>' ;
echo " </tr> \n " ;
2005-04-19 18:36:03 +00:00
}
2025-01-29 03:30:48 +00:00
}
echo '</table>' ;
echo '<br />' ;
echo '<br />' ;
echo 'Choose teams to assign the above selected timeslots to:' ;
echo '<br />' ;
echo '<a href="" onclick="return checkall(\'teams\')">select all</a>' ;
echo ' | ' ;
echo '<a href="" onclick="return checknone(\'teams\')">select none</a>' ;
echo ' | ' ;
echo '<a href="" onclick="return checkinvert(\'teams\')">invert selection</a>' ;
echo '<table class="summarytable">' ;
echo '<tr>' ;
echo '<th> </th>' ;
echo '<th>' . i18n ( 'Team' ) . '</th>' ;
echo '<th>' . i18n ( 'Timeslots' ) . '</th>' ;
echo '</tr>' ;
$teams = getJudgingTeams ();
foreach ( $teams AS $team ) {
echo '<tr>' ;
echo '<td><input type="checkbox" name="teams[]" value="' . $team [ 'id' ] . '" /></td>' ;
echo '<td>' ;
echo '<b>' . $team [ 'name' ] . ' (#' . $team [ 'num' ] . ')</b><br />' ;
$memberlist = '' ;
if ( count ( get_value_from_array ( $team , 'members' , []))) {
foreach ( $team [ 'members' ] AS $member ) {
echo ' ' ;
if ( $member [ 'captain' ] == 'yes' )
echo '<i>' ;
echo $member [ 'firstname' ] . ' ' . $member [ 'lastname' ] . '<br />' ;
if ( $member [ 'captain' ] == 'yes' )
echo '</i>' ;
2005-04-19 18:36:03 +00:00
}
2025-01-29 03:30:48 +00:00
}
echo '</td>' ;
echo '<td>' ;
// get the timeslots that this team has.
$q = $pdo -> prepare ( " SELECT
2005-04-19 18:36:03 +00:00
judges_teams_timeslots_link . id ,
judges_timeslots . date ,
judges_timeslots . starttime ,
judges_timeslots . endtime
FROM
judges_timeslots ,
judges_teams ,
judges_teams_timeslots_link
WHERE
2025-02-09 17:24:37 +00:00
judges_teams . id = ? AND
2005-04-19 18:36:03 +00:00
judges_teams . id = judges_teams_timeslots_link . judges_teams_id AND
judges_timeslots . id = judges_teams_timeslots_link . judges_timeslots_id
ORDER BY
date , starttime
" );
2025-02-09 17:24:37 +00:00
$q -> execute ([ $team [ 'id' ]]);
2025-01-29 03:30:48 +00:00
$numslots = $q -> rowCount ();
while ( $r = $q -> fetch ( PDO :: FETCH_OBJ )) {
echo '<nobr>' ;
if ( $show_date )
echo format_date ( $r -> date );
echo format_time ( $r -> starttime );
echo ' - ' ;
echo format_time ( $r -> endtime );
echo " <a onclick= \" return confirmClick('Are you sure you want to remove this timeslot from the team?') \" href= \" judges_teams_timeslots.php?action=delete&delete= $r->id\ " >< img border = 0 src = \ " " . $config [ 'SFIABDIRECTORY' ] . '/images/16/button_cancel.' . $config [ 'icon_extension' ] . '"></a>' ;
echo '</nobr>' ;
echo '<br />' ;
2005-04-19 18:36:03 +00:00
}
2025-01-29 03:30:48 +00:00
if ( $numslots )
echo ' <a onclick="return confirmClick(\'Are you sure you want to remove all timeslots from the team?\')" href="judges_teams_timeslots.php?action=empty&empty=' . $team [ 'id' ] . '"><img border=0 src="' . $config [ 'SFIABDIRECTORY' ] . '/images/16/button_cancel.' . $config [ 'icon_extension' ] . '"> remove all</a>' ;
2005-04-19 18:36:03 +00:00
2025-01-29 03:30:48 +00:00
echo '</td>' ;
echo '</tr>' ;
}
2005-04-19 18:36:03 +00:00
2025-01-29 03:30:48 +00:00
echo '</table>' ;
2005-04-19 18:36:03 +00:00
2025-01-29 03:30:48 +00:00
echo '<br />' ;
echo '<br />' ;
echo '<input type="submit" value="' . i18n ( 'Assign selected timeslots to selected teams' ) . '">' ;
echo '</form>' ;
2005-04-19 18:36:03 +00:00
2025-01-29 03:30:48 +00:00
send_footer ();
2005-04-19 18:36:03 +00:00
?>