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 ( '../common.inc.php' );
require_once ( '../user.inc.php' );
user_auth_required ( 'committee' , 'admin' );
require ( 'judges.inc.php' );
require ( '../projects.inc.php' );
send_header ( 'Judging Teams Projects' ,
array ( 'Committee Main' => 'committee_main.php' ,
'Administration' => 'admin/index.php' ,
'Judges' => 'admin/judges.php' ));
?>
2005-04-19 18:36:03 +00:00
< script language = " javascript " type = " text/javascript " >
2005-04-19 19:22:25 +00:00
function assign ( ts )
2005-04-19 18:36:03 +00:00
{
2005-04-19 19:22:25 +00:00
document . forms . teamsprojects . timeslot . value = ts ;
document . forms . teamsprojects . submit ();
2005-04-19 18:36:03 +00:00
}
2005-05-06 19:14:56 +00:00
function eligibleclick ()
{
if ( document . forms . teamsprojects . showeligible . checked )
{
window . location . href = " judges_teams_projects.php?action=edit&edit= " + document . forms . teamsprojects . edit . value + " &judges_projects_list_eligible=true " ;
}
else
{
window . location . href = " judges_teams_projects.php?action=edit&edit= " + document . forms . teamsprojects . edit . value + " &judges_projects_list_eligible=false " ;
}
}
2005-04-19 18:36:03 +00:00
</ script >
< ?
2025-01-29 03:30:48 +00:00
echo '<br />' ;
$action = null ;
if ( get_value_from_array ( $_GET , 'actio' ))
$action = $_GET [ 'action' ];
else if ( get_value_from_array ( $_POST , 'action' ))
$action = $_POST [ 'action' ];
if ( get_value_from_array ( $_GET , 'edit' ))
$edit = $_GET [ 'edit' ];
else if ( get_value_from_array ( $_POST , 'edit' ))
$edit = $_POST [ 'edit' ];
if ( ! get_value_from_2d_array ( $_SESSION , 'viewstate' , 'judges_projects_list_show' ))
$_SESSION [ 'viewstate' ][ 'judges_projects_list_show' ] = 'unassigned' ;
// now update the judges_teams_list_show viewstate
if ( get_value_from_array ( $_GET , 'judges_projects_list_show' ))
$_SESSION [ 'viewstate' ][ 'judges_projects_list_show' ] = $_GET [ 'judges_projects_list_show' ];
if ( ! get_value_from_2d_array ( $_SESSION , 'viewstate' , 'judges_projects_list_eligible' ))
$_SESSION [ 'viewstate' ][ 'judges_projects_list_eligible' ] = 'true' ;
// now update the judges_teams_list_show viewstate
if ( get_value_from_array ( $_GET , 'judges_projects_list_eligible' ))
$_SESSION [ 'viewstate' ][ 'judges_projects_list_eligible' ] = $_GET [ 'judges_projects_list_eligible' ];
if ( get_value_from_array ( $_GET , 'action' ) == 'delete' && $_GET [ 'delete' ] && $_GET [ 'edit' ]) {
2025-02-09 17:24:37 +00:00
$stmt = $pdo -> prepare ( " DELETE FROM judges_teams_timeslots_projects_link WHERE id=? " );
$stmt -> execute ([ $_GET [ 'delete' ]]);
2025-01-29 03:30:48 +00:00
echo happy ( i18n ( 'Judging team project successfully removed' ));
$action = 'edit' ;
2005-04-21 20:29:08 +00:00
}
2005-04-19 18:36:03 +00:00
2025-01-29 03:30:48 +00:00
if ( get_value_from_array ( $_POST , 'action' ) == 'assign' && $_POST [ 'edit' ] && $_POST [ 'timeslot' ] && $_POST [ 'project_id' ]) {
2025-02-09 17:24:37 +00:00
$stmt = $pdo -> prepare ( " INSERT INTO judges_teams_timeslots_projects_link (judges_teams_id,judges_timeslots_id,projects_id,year) VALUES (?,?,?,?) " );
$stmt -> execute ([ $_POST [ 'edit' ], $_POST [ 'timeslot' ], $_POST [ 'project_id' ], $config [ 'FAIRYEAR' ]]);
2025-01-29 03:30:48 +00:00
echo happy ( i18n ( 'Project assigned to team timeslot' ));
2005-04-21 20:29:08 +00:00
}
2005-04-19 18:36:03 +00:00
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 ;
2005-04-21 20:29:08 +00:00
else
2025-01-29 03:30:48 +00:00
$show_date = false ;
2005-04-21 20:29:08 +00:00
2025-01-29 03:30:48 +00:00
if (( $action == 'edit' || $action == 'assign' ) && $edit ) {
echo '<a href="judges_teams_projects.php">Back to Judging Teams Projects List</a>' ;
echo '<form name="teamsprojects" method="post" action="judges_teams_projects.php">' ;
2005-04-19 19:22:25 +00:00
echo " <input type= \" hidden \" name= \" action \" value= \" assign \" > \n " ;
echo " <input type= \" hidden \" name= \" edit \" value= \" $edit\ " > \n " ;
echo " <input type= \" hidden \" name= \" timeslot \" value= \" \" > \n " ;
2025-01-29 03:30:48 +00:00
$team = getJudgingTeam ( $edit );
echo '<b>' . $team [ 'name' ] . ' (#' . $team [ 'num' ] . ')</b><br />' ;
if ( count ( $team [ 'members' ])) {
$memberlist = ' ' ;
foreach ( $team [ 'members' ] AS $member ) {
if ( $member [ 'captain' ] == 'yes' )
$memberlist .= '<i>' ;
$memberlist .= $member [ 'firstname' ] . ' ' . $member [ 'lastname' ];
if ( $member [ 'captain' ] == 'yes' )
$memberlist .= '</i>' ;
$memberlist .= ', ' ;
2005-05-06 19:14:56 +00:00
}
2025-01-29 03:30:48 +00:00
echo '<b>' . i18n ( 'Judging Team Members' ) . ': </b>' ;
$memberlist = substr ( $memberlist , 0 , - 2 );
echo '<br />' ;
} else
$memberlist = error ( i18n ( 'Team has no members assigned to it. <a href="judges_teams_members.php">Assign Judges Here</a>' ));
2005-04-19 18:36:03 +00:00
echo $memberlist ;
2025-01-29 03:30:48 +00:00
echo '<br />' ;
echo '<br />' ;
// we need award_ids for use below to get the eligible projects, so lets build the array here while we're displaying the awards
$award_ids = array ();
if ( count ( $team [ 'awards' ])) {
$awardlist = ' ' ;
foreach ( $team [ 'awards' ] AS $award ) {
$awardlist .= $award [ 'name' ];
$awardlist .= ', ' ;
$award_ids [] = $award [ 'id' ];
2005-05-06 19:14:56 +00:00
}
2025-01-29 03:30:48 +00:00
echo '<b>' . i18n ( 'Judging Team Awards' ) . ': </b>' ;
$awardlist = substr ( $awardlist , 0 , - 2 );
echo '<br />' ;
} else
$awardlist = error ( i18n ( 'Team has no awards assigned to it. <a href="judges_teams.php">Assign Awards Here</a>' ));
2005-05-06 19:14:56 +00:00
echo $awardlist ;
2005-04-19 18:36:03 +00:00
2025-01-29 03:30:48 +00:00
// get the timeslots that this team has.
$q = $pdo -> prepare ( " SELECT
2005-04-19 18:36:03 +00:00
judges_timeslots . 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' ]]);
2005-04-19 18:36:03 +00:00
2025-01-29 03:30:48 +00:00
$numslots = $q - rowCount ();
if ( $numslots ) {
echo '<br />' ;
echo '<br />' ;
if ( $_SESSION [ 'viewstate' ][ 'judges_projects_list_eligible' ] == 'true' )
$ch = 'checked="checked"' ;
2005-05-06 19:14:56 +00:00
else
2025-01-29 03:30:48 +00:00
$ch = '' ;
echo " <input $ch onclick= \" eligibleclick() \" type= \" checkbox \" name= \" showeligible \" > " . i18n ( 'Only show projects eligible/nominated for awards assigned to this team' );
echo '<table>' ;
echo '</tr>' ;
echo '<tr>' ;
if ( $_SESSION [ 'viewstate' ][ 'judges_projects_list_show' ] == 'all' ) {
echo " <td align=left><a href= \" judges_teams_projects.php?action= $action &edit= $edit &judges_projects_list_show=unassigned \" > " . i18n ( 'show unassigned' ) . '</a></td>' ;
echo '<td align=right><b>' . i18n ( 'show all' ) . '</b></td>' ;
} else {
echo '<td align=left><b>' . i18n ( 'show unassigned' ) . '</b></td>' ;
echo " <td align=right><a href= \" judges_teams_projects.php?action= $action &edit= $edit &judges_projects_list_show=all \" > " . i18n ( 'show all' ) . '</a></td>' ;
2005-05-06 19:14:56 +00:00
}
2025-01-29 03:30:48 +00:00
echo '<td> </td>' ;
echo '</tr>' ;
echo '<tr><td colspan=2>' ;
2005-05-06 19:14:56 +00:00
2025-01-29 03:30:48 +00:00
if ( $_SESSION [ 'viewstate' ][ 'judges_projects_list_show' ] == 'all' ) {
$querystr = ' SELECT
2005-04-19 18:36:03 +00:00
projects . id ,
2005-05-06 19:14:56 +00:00
projects . projectnumber ,
projects . title ,
registrations . status
2005-04-19 18:36:03 +00:00
FROM
projects ,
2005-05-06 19:14:56 +00:00
registrations
2005-04-19 18:36:03 +00:00
WHERE
2009-04-04 04:03:05 +00:00
projectnumber is not null
2025-01-29 03:30:48 +00:00
' . getJudgingEligibilityCode () . " AND
2005-05-06 19:14:56 +00:00
projects . registrations_id = registrations . id AND
2025-02-09 17:24:37 +00:00
projects . year = ?
2005-04-19 18:36:03 +00:00
ORDER BY
2005-05-06 19:14:56 +00:00
projectnumber " ;
2025-01-29 03:30:48 +00:00
} else if ( $_SESSION [ 'viewstate' ][ 'judges_projects_list_show' ] == 'unassigned' ) {
$querystr = " SELECT
2005-05-06 19:14:56 +00:00
projects . id ,
projects . projectnumber ,
projects . title ,
registrations . status
FROM
projects
LEFT JOIN judges_teams_timeslots_projects_link ON projects . id = judges_teams_timeslots_projects_link . projects_id ,
registrations
WHERE
2009-04-04 04:03:05 +00:00
projectnumber is not null
2024-12-19 22:29:06 -05:00
' . getJudgingEligibilityCode(). ' AND
2005-05-06 19:14:56 +00:00
projects . registrations_id = registrations . id AND
judges_teams_timeslots_projects_link . projects_id IS NULL AND
2025-02-09 17:24:37 +00:00
projects . year = ?
2005-05-06 19:14:56 +00:00
ORDER BY
projectnumber " ;
2005-04-19 18:36:03 +00:00
}
2025-01-29 03:30:48 +00:00
$pq = $pdo -> prepare ( $querystr );
2025-02-09 17:24:37 +00:00
$pq -> execute ([ $config [ 'FAIRYEAR' ], $config [ 'FAIRYEAR' ]]);
2024-12-19 22:29:06 -05:00
show_pdo_errors_if_any ( $pdo );
2025-01-29 03:30:48 +00:00
$eligibleprojects = getProjectsEligibleOrNominatedForAwards ( $award_ids );
// echo nl2br(print_r($eligibleprojects,true));
// the keys are the project numbers, so lets get an array of those too so we can use in_array below
$eligibleprojectsnumbers = array_keys ( $eligibleprojects );
// echo nl2br(print_r($eligibleprojects,true));
$numprojects = 0 ;
echo '<select name="project_id">' ;
echo '<option value="">' . i18n ( 'Choose Project to Assign to Timeslot' ) . " </option> \n " ;
while ( $pr = $pq -> fetch ( PDO :: FETCH_OBJ )) {
if ( $_SESSION [ 'viewstate' ][ 'judges_projects_list_eligible' ] == 'true' ) {
if ( in_array ( $pr -> projectnumber , $eligibleprojectsnumbers )) {
2005-05-06 20:26:15 +00:00
echo " <option value= \" $pr->id\ " > $pr -> projectnumber - $pr -> title </ option > \n " ;
$numprojects ++ ;
}
2025-01-29 03:30:48 +00:00
} else {
2005-05-06 20:26:15 +00:00
echo " <option value= \" $pr->id\ " > $pr -> projectnumber - $pr -> title </ option > \n " ;
$numprojects ++ ;
}
2005-05-06 19:14:56 +00:00
}
2025-01-29 03:30:48 +00:00
echo '</select>' ;
echo '</td><td>' ;
echo i18n ( '%1 projects listed' , array ( $numprojects ));
echo '</td></tr>' ;
echo '</table>' ;
echo '<br />' ;
echo '<br />' ;
echo '<table class="summarytable">' ;
echo '<tr>' ;
echo '<th>' . i18n ( 'Timeslot' ) . '</th>' ;
echo '<th>' . i18n ( 'Project' ) . '</th>' ;
echo '</tr>' ;
while ( $r = $q -> fetch ( PDO :: FETCH_OBJ )) {
echo '<tr><td>' ;
echo '<nobr>' ;
if ( $show_date )
echo format_date ( $r -> date ) . ' ' ;
2010-01-19 03:42:25 +00:00
echo format_time ( $r -> starttime );
2025-01-29 03:30:48 +00:00
echo ' - ' ;
2010-01-19 03:42:25 +00:00
echo format_time ( $r -> endtime );
2025-01-29 03:30:48 +00:00
echo '</nobr>' ;
echo '</td><td>' ;
$projq = $pdo -> prepare ( " SELECT
2005-05-06 19:14:56 +00:00
judges_teams_timeslots_projects_link . id AS link_id ,
projects . projectnumber ,
projects . id ,
projects . title
FROM
projects ,
judges_teams_timeslots_projects_link
WHERE
2025-02-09 17:24:37 +00:00
judges_teams_timeslots_projects_link . judges_timeslots_id = ? AND
judges_teams_timeslots_projects_link . judges_teams_id = ? AND
2005-05-06 19:14:56 +00:00
judges_teams_timeslots_projects_link . projects_id = projects . id AND
2025-02-09 17:24:37 +00:00
judges_teams_timeslots_projects_link . year = ?
2005-05-06 19:14:56 +00:00
ORDER BY
projectnumber
" );
2025-02-09 17:24:37 +00:00
$projq -> execute ([ $r -> id , $team [ 'id' ], $config [ 'FAIRYEAR' ]]);
2005-05-06 19:14:56 +00:00
2025-01-29 03:30:48 +00:00
show_pdo_errors_if_any ( $pdo );
while ( $proj = $projq -> fetch ( PDO :: FETCH_OBJ )) {
echo '<a onclick="return confirmClick(\'Are you sure you want to remove this project from this team timeslot?\')" href="judges_teams_projects.php?action=delete&delete=' . $proj -> link_id . '&edit=' . $team [ 'id' ] . '"><img border=0 src="' . $config [ 'SFIABDIRECTORY' ] . '/images/16/button_cancel.' . $config [ 'icon_extension' ] . '"></a>' ;
2005-05-06 19:14:56 +00:00
echo " $proj->projectnumber - $proj->title <br /> " ;
}
2025-01-29 03:30:48 +00:00
echo " <input name= \" assignbtn[ $r->id ] \" type= \" button \" onclick= \" assign(' $r->id ') \" value= \" " . i18n ( 'Assign' ) . '">' ;
2007-03-28 22:32:57 +00:00
2025-01-29 03:30:48 +00:00
echo '</td></tr>' ;
2005-05-06 19:14:56 +00:00
}
2025-01-29 03:30:48 +00:00
echo '</table>' ;
} else {
echo error ( i18n ( 'Team has no timeslots assigned to it. <a href="judges_teams_timeslots.php">Assign Timeslots Here</a>' ));
2005-05-06 19:14:56 +00:00
}
2005-04-19 18:36:03 +00:00
2025-01-29 03:30:48 +00:00
echo '</form>' ;
} else {
echo '<input type="hidden" name="action" value="assign">' ;
echo '<table class="tableview">' ;
echo '<thead><tr>' ;
echo '<th>' . i18n ( 'Team' ) . '</th>' ;
echo '<th>' . i18n ( 'Timeslots and Projects' ) . '</th>' ;
echo '</tr></thead>' ;
$teams = getJudgingTeams ();
foreach ( $teams AS $team ) {
echo '<tr>' ;
echo '<td width="200">' ;
echo '<b>' . $team [ 'name' ] . ' (#' . $team [ 'num' ] . ')</b><br />' ;
$memberlist = '' ;
if ( count ( get_value_from_array ( $team , 'members' , []))) {
foreach ( $team [ 'members' ] AS $member ) {
echo ' ' ;
$err = false ;
foreach ( $team [ 'languages_projects' ] AS $projectlang ) {
if ( ! in_array ( $projectlang , $member [ 'languages_array' ])) {
$err = true ;
break ;
2010-04-06 17:05:59 +00:00
}
}
2025-01-29 03:30:48 +00:00
if ( $err )
echo '<span class="error">' ;
if ( $member [ 'captain' ] == 'yes' )
echo '<i>' ;
echo $member [ 'firstname' ] . ' ' . $member [ 'lastname' ] . ' (' . $member [ 'languages' ] . ')<br />' ;
if ( $member [ 'captain' ] == 'yes' )
echo '</i>' ;
if ( $err )
echo '</span>' ;
2005-12-15 22:28:04 +00:00
}
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 19:22:25 +00:00
judges_timeslots . id ,
2005-04-19 18:36:03 +00:00
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 ();
2005-04-19 18:36:03 +00:00
2025-01-29 03:30:48 +00:00
echo '<a href="judges_teams_projects.php?action=edit&edit=' . $team [ 'id' ] . '">' . i18n ( 'Edit team project assignments' ) . '</a>' ;
2005-04-19 18:36:03 +00:00
2025-01-29 03:30:48 +00:00
echo '<table class="tableview" style="margin-left: 0px; width: 100%; font-size: 1.0em;">' ;
2005-04-19 18:36:03 +00:00
2025-01-29 03:30:48 +00:00
while ( $r = $q -> fetch ( PDO :: FETCH_OBJ )) {
echo '<tr><td width="100" align="center">' ;
2005-04-19 18:36:03 +00:00
2025-01-29 03:30:48 +00:00
echo '<nobr>' ;
if ( $show_date )
echo format_date ( $r -> date ) . ' ' ;
2010-01-19 03:42:25 +00:00
echo format_time ( $r -> starttime );
2025-01-29 03:30:48 +00:00
echo ' - ' ;
2010-01-19 03:42:25 +00:00
echo format_time ( $r -> endtime );
2025-01-29 03:30:48 +00:00
echo '</nobr>' ;
echo '</td><td>' ;
2005-04-19 18:36:03 +00:00
2025-01-29 03:30:48 +00:00
$projq = $pdo -> prepare ( " SELECT
2005-04-19 19:22:25 +00:00
projects . projectnumber ,
projects . id ,
2009-04-02 16:35:02 +00:00
projects . title ,
projects . language
2005-04-19 19:22:25 +00:00
FROM
projects ,
judges_teams_timeslots_projects_link
WHERE
2025-02-09 17:24:37 +00:00
judges_teams_timeslots_projects_link . judges_timeslots_id = ? AND
judges_teams_timeslots_projects_link . judges_teams_id = ? AND
2005-04-19 19:22:25 +00:00
judges_teams_timeslots_projects_link . projects_id = projects . id AND
2025-02-09 17:24:37 +00:00
judges_teams_timeslots_projects_link . year = ?
2005-04-19 19:22:25 +00:00
ORDER BY
projectnumber
" );
2025-02-09 17:24:37 +00:00
$projq -> execute ([ $r -> id , $team [ 'id' ], $config [ 'FAIRYEAR' ]]);
2005-04-19 19:22:25 +00:00
2025-01-03 15:15:13 -05:00
show_pdo_errors_if_any ( $pdo );
2025-01-29 03:30:48 +00:00
while ( $proj = $projq -> fetch ( PDO :: FETCH_OBJ )) {
if ( ! in_array ( $proj -> language , $team [ 'languages_members' ]))
echo '<span class="error">' ;
2009-04-02 16:35:02 +00:00
echo " $proj->projectnumber - $proj->title ( $proj->language ) " ;
2025-01-29 03:30:48 +00:00
if ( ! in_array ( $proj -> language , $team [ 'languages_members' ]))
echo " </span> \n " ;
echo '<br />' ;
2005-04-19 19:22:25 +00:00
}
2025-01-29 03:30:48 +00:00
echo '</td></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 '</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
send_footer ();
2005-04-19 18:36:03 +00:00
?>