2007-03-18 19:59:02 +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 .
*/
require_once ( '../questions.inc.php' );
/*
* Take the language array in users_judge , unserialize it , and join it
* with a space
*/
2012-10-19 15:08:21 +00:00
function report_judges_languages ( $report , $field , $text )
2009-09-09 00:26:12 +00:00
{
2010-02-01 06:30:48 +00:00
$l = unserialize ( $text );
2025-01-29 03:30:48 +00:00
return ( $l ? join ( ' ' , $l ) : '' );
2010-02-01 06:30:48 +00:00
}
2025-01-29 03:30:48 +00:00
/*
* It ' s possible to get through this code and need to have access to more
* than one year , so we ' re going to index this array by year first
*/
2010-02-01 06:30:48 +00:00
$report_judges_divs = array ();
2010-02-04 17:55:04 +00:00
$report_judges_cats = array ();
function report_judges_load_divs ( $year )
{
global $report_judges_divs ;
2024-11-25 18:06:33 -05:00
global $pdo ;
2010-02-04 17:55:04 +00:00
/* Load divisions for this year, only once */
2025-01-29 03:30:48 +00:00
if ( ! array_key_exists ( $year , $report_judges_divs )) {
2010-02-04 17:55:04 +00:00
$report_judges_divs [ $year ] = array ();
2024-11-25 18:06:33 -05:00
$q = $pdo -> prepare ( " SELECT * FROM projectdivisions WHERE year=' $year ' " );
$q -> execute ();
2025-01-29 03:30:48 +00:00
while (( $d = $q -> fetch ( PDO :: FETCH_ASSOC ))) {
2010-02-04 17:55:04 +00:00
$report_judges_divs [ $year ][ $d [ 'id' ]] = $d ;
}
}
}
2025-01-29 03:30:48 +00:00
2010-02-04 17:55:04 +00:00
function report_judges_load_cats ( $year )
{
global $report_judges_cats ;
2024-11-25 18:06:33 -05:00
global $pdo ;
2025-01-29 03:30:48 +00:00
if ( ! array_key_exists ( $year , $report_judges_cats )) {
$q = $pdo -> prepare ( " SELECT * FROM projectcategories WHERE year=' $year ' " );
$q -> execute ();
while (( $c = $q -> fetch ( PDO :: FETCH_ASSOC ))) {
2010-02-04 17:55:04 +00:00
$report_judges_cats [ $year ][ $c [ 'id' ]] = $c ;
}
}
}
2010-02-04 17:55:07 +00:00
/* Return all divisions rated at expertise level x */
2012-10-19 15:08:21 +00:00
function report_judges_divs_at_exp ( $report , $field , $text )
2010-02-01 06:30:48 +00:00
{
global $report_judges_divs ;
2010-02-04 17:55:07 +00:00
/* field is divs_at_exp_x[_long] */
2025-01-29 03:30:48 +00:00
$exp = substr ( $field , 12 , 1 );
2010-02-04 17:55:07 +00:00
$long = ( strlen ( $field ) == 13 ) ? false : true ;
2010-02-01 06:30:48 +00:00
/* Text is users_judge.div_prefs */
2025-01-29 03:30:48 +00:00
$year = $report [ 'year' ];
2010-02-01 06:30:48 +00:00
$divprefs = unserialize ( $text );
2025-01-29 03:30:48 +00:00
if ( ! is_array ( $divprefs ))
return '' ;
2010-02-01 06:30:48 +00:00
2010-02-04 17:55:04 +00:00
report_judges_load_divs ( $year );
2025-01-29 03:30:48 +00:00
2010-02-04 17:55:07 +00:00
/* Find all the requested selections, and add them to the return */
2010-02-01 06:30:48 +00:00
$ret = array ();
2010-02-02 18:19:11 +00:00
$retl = array ();
2025-01-29 03:30:48 +00:00
foreach ( $divprefs as $div_id => $sel ) {
if ( $sel != $exp )
continue ;
2010-02-04 17:55:04 +00:00
$ret [] = $report_judges_divs [ $year ][ $div_id ][ 'division_shortform' ];
$retl [] = $report_judges_divs [ $year ][ $div_id ][ 'division' ];
2010-02-01 06:30:48 +00:00
}
/* Join it all together with spaces */
2025-01-29 03:30:48 +00:00
if ( $long == false )
return join ( ' ' , $ret );
2010-02-02 18:19:11 +00:00
return join ( ', ' , $retl );
2010-02-01 06:30:48 +00:00
}
2010-02-02 18:19:11 +00:00
2012-10-19 15:08:21 +00:00
function report_judges_cats_at_pref ( $report , $field , $text )
2010-02-01 06:30:48 +00:00
{
2010-02-02 18:19:11 +00:00
global $report_judges_cats ;
2010-02-04 17:55:07 +00:00
$prefs = array ( 'H' => 2 , 'h' => 1 , 'i' => 0 , 'l' => - 1 , 'L' => - 2 );
/* field is cats_at_pref_x[_long] */
2025-01-29 03:30:48 +00:00
$pref = $prefs [ substr ( $field , 13 , 1 )];
2010-02-04 17:55:07 +00:00
$long = ( strlen ( $field ) == 14 ) ? false : true ;
2010-02-01 06:30:48 +00:00
2010-02-02 18:19:11 +00:00
/* Text is users_judge.cat_prefs */
2025-01-29 03:30:48 +00:00
$year = $report [ 'year' ];
2010-02-02 18:19:11 +00:00
$catprefs = unserialize ( $text );
2025-01-29 03:30:48 +00:00
if ( ! is_array ( $catprefs ))
return '' ;
2010-02-01 06:30:48 +00:00
2010-02-04 17:55:04 +00:00
report_judges_load_cats ( $year );
2010-02-02 18:19:11 +00:00
/* Find all 2-highest selections, and add them to the return */
2010-02-01 06:30:48 +00:00
$ret = array ();
2010-02-02 18:19:11 +00:00
$retl = array ();
2025-01-29 03:30:48 +00:00
foreach ( $catprefs as $cat_id => $sel ) {
if ( $sel != $pref )
continue ;
2010-02-04 17:55:04 +00:00
$ret [] = $report_judges_cats [ $year ][ $cat_id ][ 'category_shortform' ];
$retl [] = $report_judges_cats [ $year ][ $cat_id ][ 'category' ];
2010-02-01 06:30:48 +00:00
}
/* Join it all together with spaces */
2025-01-29 03:30:48 +00:00
if ( $long == false )
return join ( ' ' , $ret );
2010-02-02 18:19:11 +00:00
return join ( ', ' , $retl );
2009-09-09 00:26:12 +00:00
}
2012-10-19 15:08:21 +00:00
function report_judges_custom_question ( $report , $field , $text )
2010-02-02 19:40:52 +00:00
{
2025-01-29 03:30:48 +00:00
global $pdo ;
2010-02-02 19:40:52 +00:00
/* Field is 'question_x', users_id is passed in $text */
$q_ord = substr ( $field , 9 );
2025-01-29 03:30:48 +00:00
$year = $report [ 'year' ];
2010-02-02 19:40:52 +00:00
$users_id = $text ;
/* Find the actual question ID */
2024-12-08 02:42:00 -05:00
$q = $pdo -> prepare ( " SELECT * FROM questions WHERE year=' $year ' AND ord=' $q_ord ' " );
$q -> execute ();
2025-01-29 03:30:48 +00:00
if ( $q -> rowCount () != 1 )
2010-02-02 19:40:52 +00:00
return 'Question not specified' ;
2024-12-08 02:42:00 -05:00
$question = $q -> fetch ( PDO :: FETCH_ASSOC );
2010-02-02 19:40:52 +00:00
2024-12-08 02:42:00 -05:00
$q = $pdo -> prepare ( " SELECT * FROM question_answers WHERE users_id=' $users_id ' AND questions_id=' { $question [ 'id' ] } ' " );
$q -> execute ();
2025-01-29 03:30:48 +00:00
if ( $q -> rowCount () != 1 )
2010-02-02 19:40:52 +00:00
return '' ;
2024-12-08 02:42:00 -05:00
$answer = $q -> fetch ( PDO :: FETCH_ASSOC );
2010-02-02 19:40:52 +00:00
return $answer [ 'answer' ];
}
2012-10-19 15:08:21 +00:00
function report_judges_div_exp ( $report , $field , $text )
2010-02-04 17:55:04 +00:00
{
/* Field is 'div_exp_x', users_id is passed in $text */
$div_id = substr ( $field , 8 );
2010-02-10 18:52:45 +00:00
$year = $report [ 'year' ];
2010-02-04 17:55:04 +00:00
$users_id = $text ;
$divprefs = unserialize ( $text );
2025-01-29 03:30:48 +00:00
if ( ! is_array ( $divprefs ))
return '' ;
2010-02-04 17:55:04 +00:00
return $divprefs [ $div_id ];
}
2025-01-29 03:30:48 +00:00
2012-10-19 15:08:21 +00:00
function report_judges_cat_pref ( $report , $field , $text )
2010-02-04 17:55:04 +00:00
{
$prefs = array ( - 2 => 'Lowest' , - 1 => 'Low' ,
2025-01-29 03:30:48 +00:00
0 => '--' ,
'1' => 'High' , 2 => 'Highest' );
2010-02-04 17:55:04 +00:00
/* Field is 'div_pref_x', users_id is passed in $text */
$cat_id = substr ( $field , 9 );
2025-01-29 03:30:48 +00:00
$year = $report [ 'year' ];
2010-02-04 17:55:04 +00:00
$users_id = $text ;
$catprefs = unserialize ( $text );
2025-01-29 03:30:48 +00:00
if ( ! is_array ( $catprefs ))
return '' ;
2010-02-04 17:55:04 +00:00
return i18n ( $prefs [ $catprefs [ $cat_id ]]);
}
2012-10-19 15:08:21 +00:00
function report_judges_team_members ( $report , $field , $text )
2010-02-10 18:52:45 +00:00
{
2025-01-29 03:30:48 +00:00
global $pdo ;
2010-02-10 18:52:45 +00:00
$year = $report [ 'year' ];
$judges_teams_id = $text ;
2024-12-08 02:42:00 -05:00
$q = $pdo -> prepare ( " SELECT * FROM judges_teams_link
2010-02-10 18:52:45 +00:00
LEFT JOIN users ON judges_teams_link . users_id = users . id
2010-02-25 21:23:11 +00:00
WHERE judges_teams_link . year = '$year'
AND judges_teams_link . judges_teams_id = '$judges_teams_id' " );
2024-12-08 02:42:00 -05:00
$q -> execute ();
2010-02-10 18:52:45 +00:00
$ret = '' ;
2025-01-29 03:30:48 +00:00
while (( $m = $q -> fetch ( PDO :: FETCH_ASSOC ))) {
2010-02-10 18:52:45 +00:00
$add = false ;
2025-01-29 03:30:48 +00:00
switch ( $field ) {
case 'team_captain' :
if ( $m [ 'captain' ] == 'yes' )
$add = true ;
break ;
case 'team_members_all_except_this' :
/* Not implemented, need to pass teams_id AND users_id in here */
break ;
case 'team_members_all_except_captain' :
if ( $m [ 'captain' ] == 'no' )
$add = true ;
break ;
case 'team_members_all' :
$add = true ;
break ;
2010-02-10 18:52:45 +00:00
}
2025-01-29 03:30:48 +00:00
if ( $add ) {
if ( $ret != '' )
$ret .= ', ' ;
2010-02-10 18:52:45 +00:00
$ret .= " { $m [ 'firstname' ] } { $m [ 'lastname' ] } " ;
}
}
return $ret ;
2010-03-31 04:07:26 +00:00
}
2025-01-29 03:30:48 +00:00
// $round_special_awards = array();
2010-03-31 04:07:26 +00:00
$report_judges_rounds = array ();
2025-01-29 03:30:48 +00:00
2010-03-31 04:07:26 +00:00
function report_judges_load_rounds ( $year )
2025-01-29 03:30:48 +00:00
{
global $pdo ;
2010-03-31 04:07:26 +00:00
global $config , $report_judges_rounds ;
2025-01-29 03:30:48 +00:00
if ( count ( $report_judges_rounds ))
return ;
2010-03-31 04:07:26 +00:00
2024-12-08 02:42:00 -05:00
$q = $pdo -> prepare ( " SELECT * FROM judges_timeslots WHERE round_id='0' AND `year`=' $year ' " );
$q -> execute ();
2010-03-31 04:07:26 +00:00
/* Loads judges_timeslots.id, .starttime, .endtime, .date, .name */
2025-01-29 03:30:48 +00:00
while ( $r = $q -> fetch ( PDO :: FETCH_ASSOC )) {
$report_judges_rounds [] = $r ;
2010-03-31 04:07:26 +00:00
2025-01-29 03:30:48 +00:00
if ( $r [ 'type' ] == 'divisional1' )
$report_judges_rounds [ 'divisional1' ] = $r ;
if ( $r [ 'type' ] == 'divisional2' )
$report_judges_rounds [ 'divisional2' ] = $r ;
2010-03-31 04:07:26 +00:00
}
2025-01-29 03:30:48 +00:00
// if($r['type'] == 'special') $round_special_awards[] = $r;
2010-03-31 04:07:26 +00:00
}
2013-03-13 19:45:23 +00:00
function report_judges_specialaward ( $report , $field , $text )
{
2025-01-29 03:30:48 +00:00
global $config , $report_judges_rounds , $pdo ;
2013-03-13 19:45:23 +00:00
$year = $report [ 'year' ];
$award_id = $text ;
2025-01-29 03:30:48 +00:00
$q = $pdo -> prepare ( " SELECT * FROM award_awards WHERE id=' " . intval ( $award_id ) . " ' " );
2024-12-08 02:42:00 -05:00
$q -> execute ();
2025-01-29 03:30:48 +00:00
$r = $q -> fetch ( PDO :: FETCH_OBJ );
2013-03-13 19:45:23 +00:00
return $r -> name ;
}
2012-10-19 15:08:21 +00:00
function report_judges_time_availability ( $report , $field , $text )
2010-03-31 04:07:26 +00:00
{
2025-01-29 03:30:48 +00:00
global $config , $report_judges_rounds , $pdo ;
2010-03-31 04:07:26 +00:00
$year = $report [ 'year' ];
$users_id = $text ;
report_judges_load_rounds ( $year );
2025-01-29 03:30:48 +00:00
switch ( $field ) {
case 'available_in_divisional1' :
$round = $report_judges_rounds [ 'divisional1' ];
break ;
case 'available_in_divisional2' :
$round = $report_judges_rounds [ 'divisional2' ];
break ;
default :
echo 'Not implemented.' ;
exit ;
2010-03-31 04:07:26 +00:00
}
2010-02-10 18:52:45 +00:00
2024-12-08 02:42:00 -05:00
$q = $pdo -> prepare ( " SELECT * FROM judges_availability WHERE users_id=' $users_id ' " );
$q -> execute ();
2025-01-29 03:30:48 +00:00
// echo mysql_error();
while (( $r = $q -> fetch ( PDO :: FETCH_ASSOC ))) {
if ( $r [ 'start' ] <= $round [ 'starttime' ] &&
$r [ 'end' ] >= $round [ 'endtime' ] &&
$r [ 'date' ] == $round [ 'date' ]) {
return 'Yes' ;
}
2010-03-31 04:07:26 +00:00
}
return 'No' ;
2010-02-10 18:52:45 +00:00
}
2009-09-09 00:26:12 +00:00
2007-03-26 01:54:18 +00:00
/* Components: languages, teams */
2007-03-18 19:59:02 +00:00
$report_judges_fields = array (
2025-01-29 03:30:48 +00:00
'last_name' => array (
2007-03-18 21:48:36 +00:00
'name' => 'Judge -- Last Name' ,
'header' => 'Last Name' ,
2007-03-18 19:59:02 +00:00
'width' => 1.0 ,
2025-01-29 03:30:48 +00:00
'table' => 'users.lastname'
),
2007-03-18 19:59:02 +00:00
'first_name' => array (
2007-03-18 21:48:36 +00:00
'name' => 'Judge -- First Name' ,
'header' => 'First Name' ,
2007-03-18 19:59:02 +00:00
'width' => 1.0 ,
2025-01-29 03:30:48 +00:00
'table' => 'users.firstname'
),
'name' => array (
2007-03-18 19:59:02 +00:00
'name' => 'Judge -- Full Name (last, first)' ,
'header' => 'Name' ,
'width' => 1.75 ,
2009-09-09 00:26:12 +00:00
'table' => " CONCAT(users.lastname, ', ', users.firstname) " ,
2025-01-29 03:30:48 +00:00
'table_sort' => 'users.lastname'
),
'namefl' => array (
2007-03-18 19:59:02 +00:00
'name' => 'Judge -- Full Name (first last)' ,
'header' => 'Name' ,
'width' => 1.75 ,
2009-09-09 00:26:12 +00:00
'table' => " CONCAT(users.firstname, ' ', users.lastname) " ,
2025-01-29 03:30:48 +00:00
'table_sort' => 'users.lastname'
),
'email' => array (
2007-03-18 19:59:02 +00:00
'name' => 'Judge -- Email' ,
'header' => 'Email' ,
2007-03-18 21:48:36 +00:00
'width' => 2.0 ,
2025-01-29 03:30:48 +00:00
'table' => 'users.email'
),
'address' => array (
2007-03-18 19:59:02 +00:00
'name' => 'Judge -- Address Street' ,
'header' => 'Address' ,
'width' => 2.0 ,
2025-01-29 03:30:48 +00:00
'table' => " CONCAT(users.address, ' ', users.address2) "
),
'city' => array (
2007-03-18 19:59:02 +00:00
'name' => 'Judge -- Address City' ,
'header' => 'City' ,
'width' => 1.5 ,
2025-01-29 03:30:48 +00:00
'table' => 'users.city'
),
'province' => array (
'name' => 'Judge -- Address ' . $config [ 'provincestate' ],
2008-07-16 17:23:53 +00:00
'header' => $config [ 'provincestate' ],
2007-03-18 19:59:02 +00:00
'width' => 0.75 ,
2025-01-29 03:30:48 +00:00
'table' => 'users.province'
),
'postal' => array (
'name' => 'Judge -- Address ' . $config [ 'postalzip' ],
2008-07-16 17:23:53 +00:00
'header' => $config [ 'postalzip' ],
2007-03-18 19:59:02 +00:00
'width' => 0.75 ,
2025-01-29 03:30:48 +00:00
'table' => 'users.postalcode'
),
2007-03-18 19:59:02 +00:00
'phone_home' => array (
2007-12-22 22:16:12 +00:00
'name' => 'Judge -- Phone (Home)' ,
2007-03-18 19:59:02 +00:00
'header' => 'Phone(Home)' ,
'width' => 1 ,
2025-01-29 03:30:48 +00:00
'table' => 'users.phonehome'
),
2007-03-18 19:59:02 +00:00
'phone_work' => array (
2007-12-22 22:16:12 +00:00
'name' => 'Judge -- Phone (Work)' ,
2007-03-18 19:59:02 +00:00
'header' => 'Phone(Work)' ,
'width' => 1.25 ,
2025-01-29 03:30:48 +00:00
'table' => 'users.phonework'
),
2007-03-20 06:24:18 +00:00
'organization' => array (
2007-12-22 22:16:12 +00:00
'name' => 'Judge -- Organization' ,
2007-03-20 06:24:18 +00:00
'header' => 'Organization' ,
'width' => 2 ,
2025-01-29 03:30:48 +00:00
'table' => 'users.organization'
),
2007-03-18 19:59:02 +00:00
'languages' => array (
2009-09-09 00:26:12 +00:00
'name' => 'Judge -- Languages' ,
2007-03-18 21:48:36 +00:00
'header' => 'Lang' ,
2007-03-18 19:59:02 +00:00
'width' => 0.75 ,
2009-09-09 00:26:12 +00:00
'table' => 'users_judge.languages' ,
'exec_function' => 'report_judges_languages' ,
2025-01-29 03:30:48 +00:00
'components' => array ( 'users_judge' )
),
'complete' => array (
2007-12-22 22:16:12 +00:00
'name' => 'Judge -- Registration Complete' ,
2007-12-30 22:30:28 +00:00
'header' => 'Cmpl' ,
'width' => 0.4 ,
2009-09-09 00:26:12 +00:00
'table' => 'users_judge.judge_complete' ,
2025-01-29 03:30:48 +00:00
'value_map' => array ( 'no' => 'No' , 'yes' => 'Yes' ),
'components' => array ( 'users_judge' )
),
'active' => array (
2010-04-07 14:25:33 +00:00
'name' => 'Judge -- Registration Active for this year' ,
'header' => 'Act' ,
'width' => 0.4 ,
'table' => 'users_judge.judge_active' ,
2025-01-29 03:30:48 +00:00
'value_map' => array ( 'no' => 'No' , 'yes' => 'Yes' ),
'components' => array ( 'users_judge' )
),
2010-02-01 06:01:02 +00:00
'willing_chair' => array (
'name' => 'Judge -- Willing Chair' ,
'header' => 'Will Chair?' ,
'width' => 1 ,
'table' => 'users_judge.willing_chair' ,
2025-01-29 03:30:48 +00:00
'value_map' => array ( 'no' => 'No' , 'yes' => 'Yes' ),
'components' => array ( 'users_judge' )
),
2010-02-01 06:01:02 +00:00
'years_school' => array (
'name' => 'Judge -- Years of Experience at School level' ,
'header' => 'Sch' ,
'width' => 0.5 ,
'table' => 'users_judge.years_school' ,
2025-01-29 03:30:48 +00:00
'components' => array ( 'users_judge' )
),
2010-02-01 06:01:02 +00:00
'years_regional' => array (
'name' => 'Judge -- Years of Experience at Regional level' ,
'header' => 'Rgn' ,
'width' => 0.5 ,
'table' => 'users_judge.years_regional' ,
2025-01-29 03:30:48 +00:00
'components' => array ( 'users_judge' )
),
2010-02-01 06:01:02 +00:00
'years_national' => array (
'name' => 'Judge -- Years of Experience at National level' ,
'header' => 'Ntl' ,
'width' => 0.5 ,
'table' => 'users_judge.years_national' ,
2025-01-29 03:30:48 +00:00
'components' => array ( 'users_judge' )
),
2010-02-01 06:01:02 +00:00
'highest_psd' => array (
'name' => 'Judge -- Highest Post-Secondary Degree' ,
'header' => 'Highest PSD' ,
'width' => 1.25 ,
'table' => 'users_judge.highest_psd' ,
2025-01-29 03:30:48 +00:00
'components' => array ( 'users_judge' )
),
/* Headers for Division Expertise/Preference Selection */
2010-02-04 17:55:07 +00:00
'divs_at_exp_5' => array (
'name' => 'Judge -- Divisions Selected as Expertise 5-Expert (Shortform)' ,
2010-02-01 06:30:48 +00:00
'header' => 'Expert Div' ,
'width' => 1 ,
'table' => 'users_judge.div_prefs' ,
2010-02-04 17:55:07 +00:00
'exec_function' => 'report_judges_divs_at_exp' ,
2025-01-29 03:30:48 +00:00
'components' => array ( 'users_judge' )
),
2010-02-04 17:55:07 +00:00
'divs_at_exp_5_long' => array (
'name' => 'Judge -- Divisions Selected as Expertise 5-Expert (Full division names)' ,
2010-02-01 06:30:48 +00:00
'header' => 'Expert Div' ,
'width' => 1.5 ,
'table' => 'users_judge.div_prefs' ,
2025-01-29 03:30:48 +00:00
'exec_function' => 'report_judges_divs_at_exp' , /* Yes, the same function as divs_at_exp_5 */
'components' => array ( 'users_judge' )
),
2010-02-04 17:55:07 +00:00
'divs_at_exp_4' => array (
'name' => 'Judge -- Divisions Selected as Expertise 4 (Shortform)' ,
'header' => '4 Div' ,
'width' => 1 ,
'table' => 'users_judge.div_prefs' ,
'exec_function' => 'report_judges_divs_at_exp' ,
2025-01-29 03:30:48 +00:00
'components' => array ( 'users_judge' )
),
2010-02-04 17:55:07 +00:00
'divs_at_exp_4_long' => array (
'name' => 'Judge -- Divisions Selected as Expertise 4 (Full division names)' ,
'header' => '4 Div' ,
'width' => 1.5 ,
'table' => 'users_judge.div_prefs' ,
2025-01-29 03:30:48 +00:00
'exec_function' => 'report_judges_divs_at_exp' , /* Yes, the same function as divs_at_exp_5 */
'components' => array ( 'users_judge' )
),
2010-02-04 17:55:07 +00:00
'divs_at_exp_3' => array (
'name' => 'Judge -- Divisions Selected as Expertise 3 (Shortform)' ,
'header' => '3 Div' ,
'width' => 1 ,
'table' => 'users_judge.div_prefs' ,
'exec_function' => 'report_judges_divs_at_exp' ,
2025-01-29 03:30:48 +00:00
'components' => array ( 'users_judge' )
),
2010-02-04 17:55:07 +00:00
'divs_at_exp_3_long' => array (
'name' => 'Judge -- Divisions Selected as Expertise 3 (Full division names)' ,
'header' => '3 Div' ,
'width' => 1.5 ,
'table' => 'users_judge.div_prefs' ,
2025-01-29 03:30:48 +00:00
'exec_function' => 'report_judges_divs_at_exp' , /* Yes, the same function as divs_at_exp_5 */
'components' => array ( 'users_judge' )
),
'other_exp' => array (
'name' => 'Judge -- Other Expertise' ,
'header' => 'Expertise Other' ,
'width' => 2 ,
'table' => 'users_judge.expertise_other' ,
'components' => array ( 'users_judge' )
),
2010-02-06 01:13:45 +00:00
/* Fill these in below, they're all the same */
2025-01-29 03:30:48 +00:00
'div_exp_1' => array (),
'div_exp_2' => array (),
'div_exp_3' => array (),
'div_exp_4' => array (),
'div_exp_5' => array (),
'div_exp_6' => array (),
'div_exp_7' => array (),
'div_exp_8' => array (),
'div_exp_9' => array (),
'div_exp_10' => array (),
'div_exp_11' => array (),
'div_exp_12' => array (),
'div_exp_13' => array (),
'div_exp_14' => array (),
'div_exp_15' => array (),
'div_exp_16' => array (),
'div_exp_17' => array (),
'div_exp_18' => array (),
'div_exp_19' => array (),
'div_exp_20' => array (),
'div_exp_21' => array (),
'div_exp_22' => array (),
'div_exp_23' => array (),
'div_exp_24' => array (),
'div_exp_25' => array (),
'div_exp_26' => array (),
'div_exp_27' => array (),
'div_exp_28' => array (),
'div_exp_29' => array (),
'div_exp_30' => array (),
'div_exp_31' => array (),
'div_exp_32' => array (),
'div_exp_33' => array (),
'div_exp_34' => array (),
'div_exp_35' => array (),
'div_exp_36' => array (),
'div_exp_37' => array (),
'div_exp_38' => array (),
'div_exp_39' => array (),
'div_exp_40' => array (),
'div_exp_41' => array (),
'div_exp_42' => array (),
'div_exp_43' => array (),
'div_exp_44' => array (),
'div_exp_45' => array (),
'div_exp_46' => array (),
'div_exp_47' => array (),
'div_exp_48' => array (),
'div_exp_49' => array (),
'div_exp_50' => array (),
/* Category preferences */
2010-02-04 17:55:07 +00:00
'cats_at_pref_H' => array (
'name' => 'Judge -- Age Categories Selected as Preference: Highest (Shortform)' ,
'header' => 'Highest' ,
'width' => 0.8 ,
'table' => 'users_judge.cat_prefs' ,
'exec_function' => 'report_judges_cats_at_pref' ,
2025-01-29 03:30:48 +00:00
'components' => array ( 'users_judge' )
),
2010-02-04 17:55:07 +00:00
'cats_at_pref_H_long' => array (
'name' => 'Judge -- Age Categories Selected as Preference: Highest (Full category names)' ,
'header' => 'Highest' ,
'width' => 1.2 ,
'table' => 'users_judge.cat_prefs' ,
2025-01-29 03:30:48 +00:00
'exec_function' => 'report_judges_cats_at_pref' , /* Yes, the same function as cats_at_pref_H */
'components' => array ( 'users_judge' )
),
2010-02-04 17:55:07 +00:00
'cats_at_pref_h' => array (
'name' => 'Judge -- Age Categories Selected as Preference: High (Shortform)' ,
'header' => 'High' ,
'width' => 0.8 ,
'table' => 'users_judge.cat_prefs' ,
'exec_function' => 'report_judges_cats_at_pref' ,
2025-01-29 03:30:48 +00:00
'components' => array ( 'users_judge' )
),
2010-02-04 17:55:07 +00:00
'cats_at_pref_h_long' => array (
'name' => 'Judge -- Age Categories Selected as Preference: High (Full category names)' ,
'header' => 'High' ,
'width' => 1.2 ,
'table' => 'users_judge.cat_prefs' ,
2025-01-29 03:30:48 +00:00
'exec_function' => 'report_judges_cats_at_pref' , /* Yes, the same function as cats_at_pref_H */
'components' => array ( 'users_judge' )
),
2010-02-04 17:55:07 +00:00
'cats_at_pref_i' => array (
'name' => 'Judge -- Age Categories Selected as Preference: Indifferent (Shortform)' ,
'header' => 'Indifferent' ,
2010-02-02 18:19:11 +00:00
'width' => 0.8 ,
'table' => 'users_judge.cat_prefs' ,
2010-02-04 17:55:07 +00:00
'exec_function' => 'report_judges_cats_at_pref' ,
2025-01-29 03:30:48 +00:00
'components' => array ( 'users_judge' )
),
2010-02-04 17:55:07 +00:00
'cats_at_pref_i_long' => array (
'name' => 'Judge -- Age Categories Selected as Preference: Indifferent (Full category names)' ,
'header' => 'Indifferent' ,
2010-02-02 18:19:11 +00:00
'width' => 1.2 ,
'table' => 'users_judge.cat_prefs' ,
2025-01-29 03:30:48 +00:00
'exec_function' => 'report_judges_cats_at_pref' , /* Yes, the same function as cats_at_pref_H */
'components' => array ( 'users_judge' )
),
2010-02-04 17:55:04 +00:00
'cat_pref_1' => array (
'name' => 'Judge -- Age Category Preference for Category ID 1' ,
'header' => 'cat1' ,
'width' => 0.5 ,
'table' => 'users_judge.cat_prefs' ,
'editor_disabled' => true , /* Only disables in the report editor, a report can still use it */
'exec_function' => 'report_judges_cat_pref' ,
2025-01-29 03:30:48 +00:00
'components' => array ( 'users_judge' )
),
2010-02-04 17:55:04 +00:00
'cat_pref_2' => array (
'name' => 'Judge -- Age Category Preference for Category ID 2' ,
'header' => 'cat2' ,
'width' => 0.5 ,
'table' => 'users_judge.cat_prefs' ,
'editor_disabled' => true ,
'exec_function' => 'report_judges_cat_pref' ,
2025-01-29 03:30:48 +00:00
'components' => array ( 'users_judge' )
),
2010-02-04 17:55:04 +00:00
'cat_pref_3' => array (
'name' => 'Judge -- Age Category Preference for Category ID 3' ,
'header' => 'cat3' ,
'width' => 0.5 ,
'table' => 'users_judge.cat_prefs' ,
'editor_disabled' => true ,
'exec_function' => 'report_judges_cat_pref' ,
2025-01-29 03:30:48 +00:00
'components' => array ( 'users_judge' )
),
2010-02-04 17:55:04 +00:00
'cat_pref_4' => array (
'name' => 'Judge -- Age Category Preference for Category ID 4' ,
'header' => 'cat4' ,
'width' => 0.5 ,
'table' => 'users_judge.cat_prefs' ,
'editor_disabled' => true ,
'exec_function' => 'report_judges_cat_pref' ,
2025-01-29 03:30:48 +00:00
'components' => array ( 'users_judge' )
),
2010-02-04 17:55:04 +00:00
'cat_pref_5' => array (
'name' => 'Judge -- Age Category Preference for Category ID 5' ,
'header' => 'cat5' ,
'width' => 0.5 ,
'table' => 'users_judge.cat_prefs' ,
'editor_disabled' => true ,
'exec_function' => 'report_judges_cat_pref' ,
2025-01-29 03:30:48 +00:00
'components' => array ( 'users_judge' )
),
2010-02-04 17:55:04 +00:00
'cat_pref_6' => array (
'name' => 'Judge -- Age Category Preference for Category ID 6' ,
'header' => 'cat6' ,
'width' => 0.5 ,
'table' => 'users_judge.cat_prefs' ,
'editor_disabled' => true ,
'exec_function' => 'report_judges_cat_pref' ,
2025-01-29 03:30:48 +00:00
'components' => array ( 'users_judge' )
),
2010-02-04 17:55:04 +00:00
'cat_pref_7' => array (
'name' => 'Judge -- Age Category Preference for Category ID 7' ,
'header' => 'cat7' ,
'width' => 0.5 ,
'table' => 'users_judge.cat_prefs' ,
'editor_disabled' => true ,
'exec_function' => 'report_judges_cat_pref' ,
2025-01-29 03:30:48 +00:00
'components' => array ( 'users_judge' )
),
2010-02-04 17:55:04 +00:00
'cat_pref_8' => array (
'name' => 'Judge -- Age Category Preference for Category ID 8' ,
'header' => 'cat8' ,
'width' => 0.5 ,
'table' => 'users_judge.cat_prefs' ,
'editor_disabled' => true ,
'exec_function' => 'report_judges_cat_pref' ,
2025-01-29 03:30:48 +00:00
'components' => array ( 'users_judge' )
),
2010-02-04 17:55:04 +00:00
'cat_pref_9' => array (
'name' => 'Judge -- Age Category Preference for Category ID 9' ,
'header' => 'cat9' ,
'width' => 0.5 ,
'table' => 'users_judge.cat_prefs' ,
'editor_disabled' => true ,
'exec_function' => 'report_judges_cat_pref' ,
2025-01-29 03:30:48 +00:00
'components' => array ( 'users_judge' )
),
2010-02-04 17:55:04 +00:00
'cat_pref_10' => array (
'name' => 'Judge -- Age Category Preference for Category ID 10' ,
'header' => 'cat10' ,
'width' => 0.5 ,
'table' => 'users_judge.cat_prefs' ,
'editor_disabled' => true ,
'exec_function' => 'report_judges_cat_pref' ,
2025-01-29 03:30:48 +00:00
'components' => array ( 'users_judge' )
),
/* Time Availability */
'available_in_divisional1' => array (
2010-03-31 04:07:26 +00:00
'name' => 'Time Availability -- Available in Divisional Round 1 ' ,
'header' => 'R1' ,
'width' => 0.5 ,
'exec_function' => 'report_judges_time_availability' ,
2025-01-29 03:30:48 +00:00
'table' => 'users.id'
),
'available_in_divisional2' => array (
2010-03-31 04:07:26 +00:00
'name' => 'Time Availability -- Available in Divisional Round 2 ' ,
'header' => 'R2' ,
'width' => 0.5 ,
'exec_function' => 'report_judges_time_availability' ,
2025-01-29 03:30:48 +00:00
'table' => 'users.id'
),
/* Others */
'special_award_only' => array (
2010-02-02 17:48:59 +00:00
'name' => 'Judge -- Special Award Only Requested' ,
'header' => 'SA Only' ,
2009-03-19 18:54:34 +00:00
'width' => 0.8 ,
2010-03-26 15:52:03 +00:00
'table' => 'users_judge.special_award_only' ,
2025-01-29 03:30:48 +00:00
'components' => array ( 'users_judge' )
),
'special_award_only_sa' => array (
2013-03-13 19:45:23 +00:00
'name' => 'Judge -- Special Award Only - Selected Special Award' ,
'header' => 'Selected Special Award' ,
'width' => 2.5 ,
'table' => 'judges_specialaward_sel.award_awards_id' ,
'exec_function' => 'report_judges_specialaward' ,
2025-01-29 03:30:48 +00:00
'components' => array ( 'users_judge' )
),
'year' => array (
2007-12-22 22:16:12 +00:00
'name' => 'Judge -- Year' ,
'header' => 'Year' ,
'width' => 0.5 ,
2025-01-29 03:30:48 +00:00
'table' => 'users.year'
),
2007-03-18 21:48:36 +00:00
'captain' => array (
2010-02-10 18:52:45 +00:00
'name' => 'Judge Team -- Team Captain? (Is the judge the captain? Yes/No)' ,
2007-03-18 21:48:36 +00:00
'header' => 'Cptn' ,
'width' => 0.5 ,
'table' => 'judges_teams_link.captain' ,
2025-01-29 03:30:48 +00:00
'value_map' => array ( 'no' => 'No' , 'yes' => 'Yes' ),
'components' => array ( 'teams' )
),
2007-03-18 21:48:36 +00:00
'team' => array (
'name' => 'Judge Team -- Name' ,
'header' => 'Team Name' ,
'width' => 3.0 ,
2007-03-20 06:24:18 +00:00
'table' => 'judges_teams.name' ,
2025-01-29 03:30:48 +00:00
'components' => array ( 'teams' )
),
2007-03-18 21:48:36 +00:00
'teamnum' => array (
'name' => 'Judge Team -- Team Number' ,
'header' => 'Team' ,
'width' => 0.5 ,
2007-03-20 06:24:18 +00:00
'table' => 'judges_teams.num' ,
2025-01-29 03:30:48 +00:00
'components' => array ( 'teams' )
),
/*
* Fixme , this requires passing 2 args to the function , can ' t do that yet
* 'team_members_all_except_this' => array (
* 'name' => 'Judge Team -- All other team members' ,
* 'header' => 'Members' ,
* 'width' => 2 ,
* 'table' => 'judges_teams.id' ,
* 'exec_function' => 'report_judges_team_members' ,
* 'components' => array ( 'teams' )),
*/
2010-02-10 18:52:45 +00:00
'team_captain' => array (
'name' => 'Judge Team -- Name of the Team Captain' ,
'header' => 'Captain' ,
'width' => 1.75 ,
'table' => 'judges_teams.id' ,
'exec_function' => 'report_judges_team_members' ,
2025-01-29 03:30:48 +00:00
'components' => array ( 'teams' )
),
2010-02-10 18:52:45 +00:00
'team_members_all_except_captain' => array (
'name' => 'Judge Team -- All team members, except the Captain' ,
'header' => 'Members' ,
'width' => 2 ,
'table' => 'judges_teams.id' ,
'exec_function' => 'report_judges_team_members' ,
2025-01-29 03:30:48 +00:00
'components' => array ( 'teams' )
),
2010-02-10 18:52:45 +00:00
'team_members_all' => array (
'name' => 'Judge Team -- All team members including the Captain' ,
'header' => 'Members' ,
'width' => 2 ,
'table' => 'judges_teams.id' ,
'exec_function' => 'report_judges_team_members' ,
2025-01-29 03:30:48 +00:00
'components' => array ( 'teams' )
),
2007-12-22 21:50:25 +00:00
'project_pn' => array (
'name' => 'Project -- Number' ,
'header' => 'Number' ,
'width' => 0.5 ,
'table' => 'projects.projectnumber' ,
2025-01-29 03:30:48 +00:00
'components' => array ( 'teams' , 'projects' )
),
2007-12-22 21:50:25 +00:00
'project_title' => array (
'name' => 'Project -- Title' ,
'header' => 'Project' ,
'width' => 3 ,
'table' => 'projects.title' ,
2025-01-29 03:30:48 +00:00
'components' => array ( 'teams' , 'projects' )
),
2007-12-22 21:50:25 +00:00
'project_summary' => array (
'name' => 'Project -- Summary' ,
'header' => 'Summary' ,
'width' => 5 ,
'table' => 'projects.summary' ,
2025-01-29 03:30:48 +00:00
'components' => array ( 'teams' , 'projects' )
),
2007-12-22 21:50:25 +00:00
'project_language' => array (
'name' => 'Project -- Language' ,
'header' => 'Lang' ,
'width' => 0.4 ,
'table' => 'projects.language' ,
2025-01-29 03:30:48 +00:00
'components' => array ( 'teams' , 'projects' )
),
2007-12-22 21:50:25 +00:00
'project_students' => array (
'name' => 'Project -- Student Name(s) (REQUIRES MYSQL 5.0) ' ,
'header' => 'Student(s)' ,
'width' => 3.0 ,
'table' => " GROUP_CONCAT(students.firstname, ' ', students.lastname ORDER BY students.lastname SEPARATOR ', ') " ,
2025-01-29 03:30:48 +00:00
'group_by' => array ( 'users.id' , 'judges_teams_timeslots_projects_link.id' ),
'components' => array ( 'teams' , 'projects' , 'students' )
),
2007-12-22 21:50:25 +00:00
'project_timeslot_start' => array (
'name' => 'Project -- Timeslot Start Time (HH:MM)' ,
'header' => 'Start' ,
'width' => 0.75 ,
'table' => " TIME_FORMAT(judges_timeslots.starttime,'%H:%i') " ,
2025-01-29 03:30:48 +00:00
'components' => array ( 'teams' , 'projects' )
),
2007-12-22 21:50:25 +00:00
'project_timeslot_end ' => array (
'name' => 'Project -- Timeslot End Time (HH:MM)' ,
'header' => 'End' ,
'width' => 0.75 ,
'table' => " TIME_FORMAT(judges_timeslots.endtime,'%H:%i') " ,
2025-01-29 03:30:48 +00:00
'components' => array ( 'teams' , 'projects' )
),
2007-12-22 21:50:25 +00:00
'project_timeslot' => array (
'name' => 'Project -- Timeslot Start - End (HH:MM - HH:MM)' ,
'header' => 'Timeslot' ,
'width' => 1.5 ,
'table' => " CONCAT(TIME_FORMAT(judges_timeslots.starttime,'%H:%i'),'-',TIME_FORMAT(judges_timeslots.endtime,'%H:%i')) " ,
2025-01-29 03:30:48 +00:00
'components' => array ( 'teams' , 'projects' )
),
2007-12-22 21:50:25 +00:00
'project_timeslot_date' => array (
'name' => 'Project -- Timeslot Date - (YYYY-MM-DD)' ,
'header' => 'Timeslot Date' ,
'width' => 1 ,
2025-01-29 03:30:48 +00:00
'table' => 'judges_timeslots.date' ,
'components' => array ( 'teams' , 'projects' )
),
2010-03-23 16:03:28 +00:00
'rank' => array (
'name' => 'Project -- Rank (left blank for judges to fill out)' ,
'header' => 'Rank' ,
2025-01-29 03:30:48 +00:00
'width' => 1.0 ,
'table' => '""'
),
2010-02-02 19:40:52 +00:00
'question_1' => array (
'name' => 'Judge -- Custom Judge Registration Question 1' ,
'header' => 'Q1' ,
'width' => 1 ,
'table' => 'users.id' ,
2010-02-02 19:40:56 +00:00
'editor_disabled' => true , /* Only disables in the report editor, a report can still use it */
2025-01-29 03:30:48 +00:00
'exec_function' => 'report_judges_custom_question'
),
2010-02-02 19:40:52 +00:00
'question_2' => array (
'name' => 'Judge -- Custom Judge Registration Question 2' ,
'header' => 'Q2' ,
'width' => 1 ,
'table' => 'users.id' ,
2010-02-02 19:40:56 +00:00
'editor_disabled' => true ,
2025-01-29 03:30:48 +00:00
'exec_function' => 'report_judges_custom_question'
),
2010-02-02 19:40:52 +00:00
'question_3' => array (
'name' => 'Judge -- Custom Judge Registration Question 3' ,
'header' => 'Q3' ,
'width' => 1 ,
'table' => 'users.id' ,
2010-02-02 19:40:56 +00:00
'editor_disabled' => true ,
2025-01-29 03:30:48 +00:00
'exec_function' => 'report_judges_custom_question'
),
2010-02-02 19:40:52 +00:00
'question_4' => array (
'name' => 'Judge -- Custom Judge Registration Question 4' ,
'header' => 'Q4' ,
'width' => 1 ,
'table' => 'users.id' ,
2010-02-02 19:40:56 +00:00
'editor_disabled' => true ,
2025-01-29 03:30:48 +00:00
'exec_function' => 'report_judges_custom_question'
),
2010-02-02 19:40:52 +00:00
'question_5' => array (
'name' => 'Judge -- Custom Judge Registration Question 5' ,
'header' => 'Q5' ,
'width' => 1 ,
'table' => 'users.id' ,
2010-02-02 19:40:56 +00:00
'editor_disabled' => true ,
2025-01-29 03:30:48 +00:00
'exec_function' => 'report_judges_custom_question'
),
2010-02-02 19:40:52 +00:00
'question_6' => array (
'name' => 'Judge -- Custom Judge Registration Question 6' ,
'header' => 'Q6' ,
'width' => 1 ,
'table' => 'users.id' ,
2010-02-02 19:40:56 +00:00
'editor_disabled' => true ,
2025-01-29 03:30:48 +00:00
'exec_function' => 'report_judges_custom_question'
),
2010-02-02 19:40:52 +00:00
'question_7' => array (
'name' => 'Judge -- Custom Judge Registration Question 7' ,
'header' => 'Q7' ,
'width' => 1 ,
'table' => 'users.id' ,
2010-02-02 19:40:56 +00:00
'editor_disabled' => true ,
2025-01-29 03:30:48 +00:00
'exec_function' => 'report_judges_custom_question'
),
2010-02-02 19:40:52 +00:00
'question_8' => array (
'name' => 'Judge -- Custom Judge Registration Question 8' ,
'header' => 'Q8' ,
'width' => 1 ,
'table' => 'users.id' ,
2010-02-02 19:40:56 +00:00
'editor_disabled' => true ,
2025-01-29 03:30:48 +00:00
'exec_function' => 'report_judges_custom_question'
),
2010-02-02 19:40:52 +00:00
'question_9' => array (
'name' => 'Judge -- Custom Judge Registration Question 9' ,
'header' => 'Q9' ,
'width' => 1 ,
'table' => 'users.id' ,
2010-02-02 19:40:56 +00:00
'editor_disabled' => true ,
2025-01-29 03:30:48 +00:00
'exec_function' => 'report_judges_custom_question'
),
2010-02-02 19:40:52 +00:00
'question_10' => array (
'name' => 'Judge -- Custom Judge Registration Question 10' ,
'header' => 'Q10' ,
'width' => 1 ,
'table' => 'users.id' ,
2010-02-02 19:40:56 +00:00
'editor_disabled' => true ,
2025-01-29 03:30:48 +00:00
'exec_function' => 'report_judges_custom_question'
),
'static_text' => array (
2007-03-20 06:24:18 +00:00
'name' => 'Static Text (useful for labels)' ,
'header' => '' ,
'width' => 0.1 ,
2025-01-29 03:30:48 +00:00
'table' => " CONCAT(' ') "
),
2007-03-18 19:59:02 +00:00
);
2010-02-06 01:13:45 +00:00
/* Fill in big expansions */
/* div_exp */
2025-01-29 03:30:48 +00:00
for ( $x = 1 ; $x <= 50 ; $x ++ ) {
2010-02-06 01:13:45 +00:00
$f = " div_exp_ $x " ;
$report_judges_fields [ " div_exp_ $x " ] = array (
'name' => " Judge -- Expertise for Division ID $x " ,
'header' => " div $x " ,
'width' => 0.5 ,
'table' => 'users_judge.div_prefs' ,
'editor_disabled' => true , /* Only disables in the report editor, a report can still use it */
'exec_function' => 'report_judges_div_exp' ,
2025-01-29 03:30:48 +00:00
'components' => array ( 'users_judge' )
);
2010-02-06 01:13:45 +00:00
}
2010-02-02 19:40:52 +00:00
2025-01-29 03:30:48 +00:00
/*
* Overwrite the question_1 .. question_10 fields with the
* question name and header from the list of questions
*/
2010-02-02 19:40:52 +00:00
function report_judges_update_questions ( $year )
{
global $report_judges_fields ;
$qs = questions_load_questions ( 'judgereg' , $year );
2025-01-29 03:30:48 +00:00
if ( count ( $qs ) > 10 ) {
echo 'Not enough judge question fields, please file a bug report at sfiab.ca and report that you have ' . count ( $qs ) . ' custom judge questions, but the system can handle a maximum of 10.' ;
2010-02-02 19:40:52 +00:00
exit ;
}
2025-01-29 03:30:48 +00:00
foreach ( $qs as $qid => $q ) {
2010-02-02 19:40:52 +00:00
$f = " question_ { $q [ 'ord' ] } " ;
$report_judges_fields [ $f ][ 'header' ] = $q [ 'db_heading' ];
2025-01-29 03:30:48 +00:00
$report_judges_fields [ $f ][ 'name' ] = 'Judge -- Custom Judge Question: ' . $q [ 'question' ];
2010-02-02 19:40:56 +00:00
$report_judges_fields [ $f ][ 'editor_disabled' ] = false ;
2010-02-02 19:40:52 +00:00
}
}
2010-02-04 17:55:04 +00:00
function report_judges_update_divs ( $year )
{
global $report_judges_fields , $report_judges_divs ;
report_judges_load_divs ( $year );
2025-01-29 03:30:48 +00:00
if ( count ( $report_judges_divs [ $year ]) > 50 ) {
echo 'Not enough judge division fields, please file a bug report at sfiab.ca and report that you have ' . count ( $report_judges_divs [ $year ]) . ' divisions, but the system can handle a maximum of 50.' ;
2010-02-04 17:55:04 +00:00
exit ;
}
2025-01-29 03:30:48 +00:00
foreach ( $report_judges_divs [ $year ] as $div_id => $d ) {
2010-02-04 17:55:04 +00:00
$f = " div_exp_ $div_id " ;
$report_judges_fields [ $f ][ 'header' ] = " { $d [ 'division_shortform' ] } - { $d [ 'division' ] } " ;
2025-01-29 03:30:48 +00:00
$report_judges_fields [ $f ][ 'name' ] = 'Judge -- Expertise in Division: ' . $d [ 'division' ];
2010-02-04 17:55:04 +00:00
$report_judges_fields [ $f ][ 'editor_disabled' ] = false ;
}
}
2025-01-29 03:30:48 +00:00
2010-02-04 17:55:04 +00:00
function report_judges_update_cats ( $year )
{
global $report_judges_fields , $report_judges_cats ;
report_judges_load_cats ( $year );
2025-01-29 03:30:48 +00:00
if ( $report_judges_cats [ $year ] != NULL ) {
if ( count ( $report_judges_cats [ $year ]) > 10 ) {
echo 'Not enough judge age category fields, please file a bug report at science-ation.ca and report that you have ' . count ( $report_judges_cats [ $year ]) . ' age categories, but the system can handle a maximum of 10.' ;
exit ;
2010-03-26 15:52:03 +00:00
}
2025-01-29 03:30:48 +00:00
if ( is_array ( $report_judges_cats [ $year ])) {
foreach ( $report_judges_cats [ $year ] as $cat_id => $d ) {
$f = " cat_pref_ $cat_id " ;
$report_judges_fields [ $f ][ 'header' ] = " { $d [ 'category_shortform' ] } - { $d [ 'category' ] } " ;
$report_judges_fields [ $f ][ 'name' ] = 'Judge -- Preference for Age Category: ' . $d [ 'category' ];
$report_judges_fields [ $f ][ 'editor_disabled' ] = false ;
}
}
} else {
echo 'Judge age categories not set up.' ;
exit ;
2010-02-04 17:55:04 +00:00
}
}
2010-02-02 19:40:52 +00:00
$report_judges_questions_updated = false ;
2025-01-29 03:30:48 +00:00
/*
* Do the overwrites for the current year , this is for the editor , because
* it doesn ' t call a _fromwhere
*/
2010-02-02 19:40:52 +00:00
report_judges_update_questions ( $config [ 'FAIRYEAR' ]);
2010-02-04 17:55:04 +00:00
report_judges_update_divs ( $config [ 'FAIRYEAR' ]);
report_judges_update_cats ( $config [ 'FAIRYEAR' ]);
2010-02-02 19:40:52 +00:00
function report_judges_fromwhere ( $report , $components )
{
2025-01-29 03:30:48 +00:00
global $config , $report_judges_fields , $report_judges_questions_updated ;
2010-02-02 19:40:52 +00:00
2007-03-18 19:59:02 +00:00
$year = $report [ 'year' ];
2025-01-29 03:30:48 +00:00
if ( $report_judges_questions_updated == false ) {
/*
* Do overwrites for the report year , overwriting the previous
2010-02-02 19:40:52 +00:00
* overwrites for the current year , because the report year
2025-01-29 03:30:48 +00:00
* could be different , and the questions may have changed
*/
2010-02-02 19:40:52 +00:00
report_judges_update_questions ( $year );
$report_judges_questions_updated = true ;
}
2025-01-29 03:30:48 +00:00
if ( in_array ( 'users_judge' , $components )) {
2009-09-09 00:26:12 +00:00
$uj_from = 'LEFT JOIN users_judge ON users_judge.users_id=users.id' ;
2013-03-13 19:45:23 +00:00
$uj_from .= ' LEFT JOIN judges_specialaward_sel ON judges_specialaward_sel.users_id=users.id' ;
2007-03-18 21:48:36 +00:00
}
2025-01-29 03:30:48 +00:00
2007-03-20 06:24:18 +00:00
$teams_from = '' ;
$teams_where = '' ;
2025-01-29 03:30:48 +00:00
if ( in_array ( 'teams' , $components )) {
$teams_from = ' LEFT JOIN judges_teams_link ON judges_teams_link . users_id = users . id
LEFT JOIN judges_teams ON judges_teams . id = judges_teams_link . judges_teams_id ' ;
2007-12-22 21:50:25 +00:00
$teams_where = " AND judges_teams_link.year=' $year '
2007-03-20 06:24:18 +00:00
AND judges_teams . year = '$year' " ;
2007-03-18 19:59:02 +00:00
}
2007-12-22 21:50:25 +00:00
2025-01-29 03:30:48 +00:00
$projects_from = '' ;
$projects_where = '' ;
if ( in_array ( 'projects' , $components )) {
$projects_from = ' LEFT JOIN judges_teams_timeslots_projects_link ON
2007-12-22 21:50:25 +00:00
judges_teams_timeslots_projects_link . judges_teams_id = judges_teams . id
LEFT JOIN projects ON projects . id = judges_teams_timeslots_projects_link . projects_id
2025-01-29 03:30:48 +00:00
LEFT JOIN judges_timeslots ON judges_timeslots . id = judges_teams_timeslots_projects_link . judges_timeslots_id ' ;
2007-12-22 21:50:25 +00:00
$projects_where = " AND judges_teams_timeslots_projects_link.year=' $year '
AND projects . year = '$year' " ;
}
2025-01-29 03:30:48 +00:00
$students_from = '' ;
$students_where = '' ;
if ( in_array ( 'students' , $components )) {
$students_from = 'LEFT JOIN students ON students.registrations_id=projects.registrations_id' ;
2007-12-22 21:50:25 +00:00
$students_where = " AND students.year=' $year ' " ;
}
2007-12-22 22:16:12 +00:00
/* Search the report for a filter based on judge year */
2009-09-09 00:26:12 +00:00
$year_where = " AND users.year=' $year ' " ;
2025-01-29 03:30:48 +00:00
foreach ( $report [ 'filter' ] as $d ) {
if ( $d [ 'field' ] == 'year' ) {
2009-09-09 00:26:12 +00:00
/* Don't interally filter on year, we'll do it externally */
$year_where = '' ;
2007-12-22 22:16:12 +00:00
}
}
2025-01-29 03:30:48 +00:00
$q = " FROM \t users
2007-12-22 21:50:25 +00:00
$teams_from
$projects_from
$students_from
2009-09-09 00:26:12 +00:00
$uj_from
2007-03-18 19:59:02 +00:00
WHERE
2009-09-09 00:26:12 +00:00
users . types LIKE '%judge%'
2007-12-22 22:16:12 +00:00
$year_where
2007-03-20 06:24:18 +00:00
$teams_where
2007-12-22 21:50:25 +00:00
$projects_where
$students_where
2009-03-09 16:38:06 +00:00
AND deleted = 'no'
2007-03-18 19:59:02 +00:00
" ;
return $q ;
}
?>