2007-12-19 07:49:38 +00:00
< ?
2025-01-29 03:30:48 +00:00
/*
* This file is part of the Science - ation project
* Science - ation Website : https :// science - ation . ca
*
* This file was part of the 'Science Fair In A Box' project
*
*
* Copyright ( C ) 2005 Sci - Tech Ontario Inc < info @ scitechontario . org >
* Copyright ( C ) 2005 James Grant < james @ lightbox . org >
* Copyright ( C ) 2024 AlgoLibre Inc . < science - ation @ algolibre . io >
*
* 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 .
*/
2007-12-19 07:49:38 +00:00
?>
< ?
2025-01-29 03:30:48 +00:00
require ( '../common.inc.php' );
require_once ( '../user.inc.php' );
user_auth_required ( 'committee' , 'admin' );
2007-12-19 07:49:38 +00:00
2025-01-29 03:30:48 +00:00
/* Load Tours */
2025-02-22 02:29:20 +00:00
$query = ' SELECT * FROM tours WHERE
year = ? ' ;
2025-01-29 03:30:48 +00:00
$r = $pdo -> prepare ( $query );
2025-02-09 17:24:37 +00:00
$r -> execute ([ $config [ 'FAIRYEAR' ]]);
2025-01-29 03:30:48 +00:00
$tours = array ();
while ( $i = $r -> fetch ( PDO :: FETCH_OBJ )) {
2007-12-19 07:49:38 +00:00
$tours [ $i -> id ][ 'name' ] = $i -> name ;
2007-12-20 01:05:04 +00:00
$tours [ $i -> id ][ 'num' ] = $i -> num ;
2025-01-29 03:30:48 +00:00
}
2007-12-19 07:49:38 +00:00
2025-01-29 03:30:48 +00:00
if ( get_value_from_array ( $_GET , 'action' ) == 'info' ) {
2007-12-19 07:49:38 +00:00
$sid = intval ( $_GET [ 'id' ]);
2025-02-22 02:29:20 +00:00
$query = ' SELECT * FROM students WHERE id = ?
AND year = ? ' ;
2024-12-08 02:42:00 -05:00
$r = $pdo -> prepare ( $query );
2025-02-22 02:29:20 +00:00
$r -> execute ([ $sid , $config [ 'FAIRYEAR' ]]);
2024-12-08 02:42:00 -05:00
$i = $r -> fetch ( PDO :: FETCH_OBJ );
2007-12-19 07:49:38 +00:00
send_popup_header ( i18n ( 'Student Tour Rank Information - %1 %2' ,
2025-01-29 03:30:48 +00:00
array ( $i -> firstname , $i -> lastname )));
2025-02-22 02:29:20 +00:00
$query = ' SELECT * FROM tours_choice
2025-02-09 17:24:37 +00:00
WHERE students_id = ?
AND year = ?
2025-02-22 02:29:20 +00:00
ORDER BY rank ' ;
2024-12-08 02:42:00 -05:00
$r = $pdo -> prepare ( $query );
2025-02-22 02:29:20 +00:00
$r -> execute ([ $sid , $config [ 'FAIRYEAR' ]]);
2007-12-19 07:49:38 +00:00
echo '<table>' ;
2025-02-22 02:29:20 +00:00
$count = $r -> rowCount ();
2025-01-29 03:30:48 +00:00
while ( $i = $r -> fetch ( PDO :: FETCH_OBJ )) {
2007-12-19 07:49:38 +00:00
echo '<tr><td align="right">' ;
2025-01-29 03:30:48 +00:00
if ( $i -> rank == 0 ) {
echo '<b><nobr>' . i18n ( 'Current Assigned Tour' ) . ':</nobr></b>' ;
2007-12-19 07:49:38 +00:00
echo '</td><td colspan=\"2\">' ;
echo " # { $tours [ $i -> tour_id ][ 'num' ] } : { $tours [ $i -> tour_id ][ 'name' ] } " ;
echo '<br /><br />' ;
$count -- ;
} else {
2025-01-29 03:30:48 +00:00
echo '<b>' . i18n ( 'Tour Preference %1' ,
array ( $i -> rank )) . ':</b>' ;
2007-12-19 07:49:38 +00:00
echo '</td><td>' ;
echo " # { $tours [ $i -> tour_id ][ 'num' ] } : { $tours [ $i -> tour_id ][ 'name' ] } " ;
echo '</td><td>' ;
2025-01-29 03:30:48 +00:00
if ( $i -> rank == 1 )
2007-12-19 07:49:38 +00:00
echo i18n ( '(Most Preferred)' );
2025-01-29 03:30:48 +00:00
if ( $i -> rank == $count )
2007-12-19 07:49:38 +00:00
echo i18n ( '(Least Preferred)' );
}
echo '</td></tr>' ;
}
echo '</table>' ;
send_popup_footer ();
exit ;
2025-01-29 03:30:48 +00:00
}
2007-12-19 07:49:38 +00:00
2025-01-29 03:30:48 +00:00
send_header ( 'Tour Assignments' ,
array ( 'Committee Main' => 'committee_main.php' ,
'Administration' => 'admin/index.php' ,
'Tours' => 'admin/tours.php' ));
2007-12-19 07:49:38 +00:00
?>
< script language = " javascript " type = " text/javascript " >
2007-12-20 18:07:39 +00:00
var infowindow = '' ;
2007-12-19 07:49:38 +00:00
function addbuttonclicked ( id )
{
document . forms . tours . action . value = " add " ;
document . forms . tours . tours_id . value = id ;
document . forms . tours . submit ();
}
function openinfo ( id )
{
if ( id )
currentid = id ;
else
currentid = document . forms . tours [ " studentlist[] " ] . options [ document . forms . tours [ " studentlist[] " ] . selectedIndex ] . value ;
2009-10-29 17:07:56 +00:00
infowindow = window . open ( " tours_assignments.php?action=info&id= " + currentid , " StudentTourRankInformation " , " location=no,menubar=no,directories=no,toolbar=no,width=770,height=300,scrollbars=yes " );
2007-12-19 07:49:38 +00:00
return false ;
}
2007-12-20 18:07:39 +00:00
2007-12-19 07:49:38 +00:00
function switchinfo ()
{
if ( document . forms . tours [ " studentlist[] " ] . selectedIndex != - 1 )
{
currentname = document . forms . tours [ " studentlist[] " ] . options [ document . forms . tours [ " studentlist[] " ] . selectedIndex ] . text ;
currentid = document . forms . tours [ " studentlist[] " ] . options [ document . forms . tours [ " studentlist[] " ] . selectedIndex ] . value ;
document . forms . tours . studentinfobutton . disabled = false ;
document . forms . tours . studentinfobutton . value = currentname ;
2007-12-20 18:07:39 +00:00
if ( ! infowindow . closed && infowindow . location ) {
openinfo ();
}
2007-12-19 07:49:38 +00:00
}
else
{
document . forms . tours . studentinfobutton . disabled = true ;
2025-01-29 03:30:48 +00:00
document . forms . tours . studentinfobutton . value = " <? echo i18n('Student Tour Rank Info') ?> " ;
2007-12-19 07:49:38 +00:00
}
}
</ script >
< ?
2025-01-29 03:30:48 +00:00
$tours_id = intval ( get_value_from_array ( $_POST , 'tours_id' ));
$student_list = is_array ( get_value_from_array ( $_POST , 'studentlist' )) ? $_POST [ 'studentlist' ] : array ();
2007-12-19 07:49:38 +00:00
2025-01-29 03:30:48 +00:00
if ( get_value_from_array ( $_POST , 'action' ) == 'add' && $tours_id != 0 && count ( $student_list ) > 0 ) {
// make sure the tour is valid
if ( ! array_key_exists ( $tours_id , $tours )) {
/* Someone is hacking the POST */
echo 'HALT: Tour list changed between the form and the POST.' ;
exit ;
}
2007-12-19 07:49:38 +00:00
2025-01-29 03:30:48 +00:00
$added = 0 ;
foreach ( $student_list AS $sid ) {
/* Make sure the student exists */
$sid = intval ( $sid );
2007-12-19 07:49:38 +00:00
2025-02-22 02:29:20 +00:00
$q = $pdo -> prepare ( ' SELECT registrations_id FROM students
WHERE id = ? ' );
2025-02-09 17:24:37 +00:00
$q -> execute ([ $sid ]);
2025-01-29 03:30:48 +00:00
$i = $q -> fetch ( PDO :: FETCH_OBJ );
$rid = $i -> registrations_id ;
2007-12-19 07:49:38 +00:00
2025-01-29 03:30:48 +00:00
/* Delete any old linking */
$stmt = $pdo -> prepare ( " DELETE FROM tours_choice WHERE
2025-02-09 17:24:37 +00:00
students_id = ? AND
year = ? AND
2007-12-19 07:49:38 +00:00
rank = '0' " );
2025-02-22 02:29:20 +00:00
$stmt -> execute ([ $sid , $config [ 'FAIRYEAR' ]]);
2025-01-29 03:30:48 +00:00
/* Connect this student to this tour */
$stmt = $pdo -> prepare ( " INSERT INTO tours_choice
2007-12-19 07:49:38 +00:00
( `students_id` , `registrations_id` ,
`tour_id` , `year` , `rank` )
VALUES (
2025-02-22 02:29:20 +00:00
? ,
? ,
? ,
? ,
'0' ) " );
$stmt -> execute ([ $sid , $rid , $tours_id , $config [ 'FAIRYEAR' ]]);
2025-01-29 03:30:48 +00:00
$added ++ ;
2007-12-19 07:49:38 +00:00
}
2025-01-29 03:30:48 +00:00
if ( $added == 1 )
$j = i18n ( 'student' );
else
$j = i18n ( 'students' );
2007-12-19 07:49:38 +00:00
2025-01-29 03:30:48 +00:00
echo happy ( i18n ( '%1 %2 added to tour #%3 (%4)' , array (
$added , $j , $tours [ $tours_id ][ 'num' ], $tours [ $tours_id ][ 'name' ]
)));
}
2007-12-19 07:49:38 +00:00
2025-01-29 03:30:48 +00:00
$tours_id = intval ( get_value_from_array ( $_GET , 'tours_id' ));
2025-02-22 02:29:20 +00:00
error_log ( " Tours ID: " . $tours_id );
2025-01-29 03:30:48 +00:00
$students_id = intval ( get_value_from_array ( $_GET , 'students_id' ));
if ( get_value_from_array ( $_GET , 'action' ) == 'del' && $tours_id > 0 && $students_id > 0 ) {
$stmt = $pdo -> prepare ( " DELETE FROM tours_choice
2025-02-09 17:24:37 +00:00
WHERE students_id = ?
AND year = ?
2007-12-19 07:49:38 +00:00
AND rank = '0' " );
2025-02-22 02:29:20 +00:00
$stmt -> execute ([ $students_id , $config [ 'FAIRYEAR' ]]);
2007-12-19 07:49:38 +00:00
2025-01-29 03:30:48 +00:00
echo happy ( i18n ( 'Removed student from tour #%1 (%2)' , array ( $tours [ $tours_id ][ 'num' ], $tours [ $tours_id ][ 'name' ])));
}
2007-12-19 07:49:38 +00:00
2025-01-29 03:30:48 +00:00
if ( get_value_from_array ( $_GET , 'action' ) == 'empty' && $tours_id > 0 ) {
2025-02-22 02:29:20 +00:00
$stmt = $pdo -> prepare ( " DELETE FROM tours_choice WHERE
2025-02-09 17:24:37 +00:00
tour_id = ?
AND year = ?
2007-12-19 07:49:38 +00:00
AND rank = '0' " );
2025-02-22 02:29:20 +00:00
$stmt -> execute ([ $tours_id , $config [ 'FAIRYEAR' ]]);
2025-01-29 03:30:48 +00:00
echo happy ( i18n ( 'Emptied all students from tour #%1 (%2)' , array ( $tours [ $tours_id ][ 'num' ], $tours [ $tours_id ][ 'name' ])));
}
2007-12-19 07:49:38 +00:00
2025-01-29 03:30:48 +00:00
if ( ! $_SESSION [ 'viewstate' ][ 'students_teams_list_show' ])
$_SESSION [ 'viewstate' ][ 'students_teams_list_show' ] = 'unassigned' ;
// now update the students_teams_list_show viewstate
if ( get_value_from_array ( $_GET , 'students_teams_list_show' ))
$_SESSION [ 'viewstate' ][ 'students_teams_list_show' ] = $_GET [ 'students_teams_list_show' ];
echo '<form name="tours" method="post" action="tours_assignments.php">' ;
echo '<input type="hidden" name="action">' ;
echo '<input type="hidden" name="tours_id">' ;
echo '<input type="hidden" name="students_id">' ;
echo '<table>' ;
echo '<tr>' ;
echo '<th>' . i18n ( 'Student List' );
echo '<br />' ;
echo '<input disabled="true" name="studentinfobutton" id="studentinfobutton" onclick="openinfo()" type="button" value="' . i18n ( 'Student Rank Info' ) . '">' ;
echo '</th>' ;
echo '<th>' . i18n ( 'Tours' ) . '</th>' ;
echo '</tr>' ;
echo '<tr><td valign="top">' ;
/*
* Load students with the current tour selections
* ( rank = 0 ), or if there is no selection , make
* rank NULL , and tours_id NULL
*/
2025-02-22 02:29:20 +00:00
$querystr = " SELECT students.firstname, students.lastname,
students . id , tours_choice . tour_id , tours_choice . rank
2007-12-19 07:49:38 +00:00
FROM
students
LEFT JOIN tours_choice ON ( tours_choice . students_id = students . id AND tours_choice . rank = 0 )
LEFT JOIN registrations ON registrations . id = students . registrations_id
WHERE
2025-02-09 17:24:37 +00:00
students . year = ? AND
( tours_choice . year = ? OR
2025-02-22 02:29:20 +00:00
tours_choice . year IS NULL ) AND
registrations . status = 'complete' OR registrations . status = 'paymentpending'
2007-12-19 07:49:38 +00:00
ORDER BY
students . lastname ,
students . firstname ,
tours_choice . rank " ;
2025-01-29 03:30:48 +00:00
$q = $pdo -> prepare ( $querystr );
2025-02-22 02:29:20 +00:00
$q -> execute ([ $config [ 'FAIRYEAR' ], $config [ 'FAIRYEAR' ]]);
2007-12-19 07:49:38 +00:00
2025-01-29 03:30:48 +00:00
show_pdo_errors_if_any ( $pdo );
2007-12-19 07:49:38 +00:00
2025-01-29 03:30:48 +00:00
$student = array ();
$last_student_id = - 1 ;
while ( $r = $q -> fetch ( PDO :: FETCH_OBJ )) {
$id = $r -> id ;
$tours_id = $r -> tour_id ;
$rank = $r -> rank ;
2007-12-19 07:49:38 +00:00
2025-01-29 03:30:48 +00:00
if ( $id != $last_student_id ) {
$last_student_id = $id ;
2007-12-19 07:49:38 +00:00
2025-01-29 03:30:48 +00:00
$student [ $id ][ 'name' ] = $r -> firstname . ' ' . $r -> lastname ;
}
if ( $tours_id != NULL ) {
$tours [ $tours_id ][ 'students' ][] = $id ;
$student [ $id ][ 'tours_id' ] = $tours_id ;
}
}
2007-12-19 07:49:38 +00:00
2025-01-29 03:30:48 +00:00
// rint_r($student);
echo '<select name="studentlist[]" onchange="switchinfo()" multiple="multiple" style="width: 250px; height: 600px;">' ;
foreach ( $student as $id => $s ) {
if ( $s [ 'tours_id' ] != 0 )
continue ;
echo " <option value= \" $id\ " > { $s [ 'name' ]} </ option > \n " ;
}
echo '</select>' ;
echo '</td>' ;
echo '<td valign="top">' ;
echo '<table width="100%">' ;
foreach ( $tours as $tid => $t ) {
echo '<tr><td colspan=\"3\"><hr />' ;
echo " <input onclick= \" addbuttonclicked(' $tid ') \" type= \" button \" value= \" Add >> \" > " ;
echo " # { $t [ 'num' ] } : { $t [ 'name' ] } " ;
echo '</td></tr>' ;
$x = 0 ;
if ( is_array ( $t [ 'students' ])) {
foreach ( $t [ 'students' ] AS $sid ) {
$s = $student [ $sid ];
if ( $x == 0 )
echo '<tr>' ;
echo '<td>' ;
echo " <a href= \" tours_assignments.php?action=del&tours_id= $tid &students_id= $sid\ " >< img border = 0 src = \ " " . $config [ 'SFIABDIRECTORY' ] . '/images/16/button_cancel.' . $config [ 'icon_extension' ] . '"></a>' ;
echo ' ' ;
echo " <a href= \" \" onclick= \" return openinfo( $sid ); \" > " ;
echo " { $s [ 'name' ] } </a> " ;
echo '</td>' ;
if ( $x == 2 ) {
echo '</tr>' ;
$x = 0 ;
} else
$x ++ ;
2007-12-19 07:49:38 +00:00
}
2025-01-29 03:30:48 +00:00
if ( $x != 0 )
echo '</tr>' ;
echo '<tr><td colspan="3">' ;
echo " <a onclick= \" return confirmClick('Are you sure you want to empty all students from this tour?') \" href= \" tours_assignments.php?action=empty&tours_id= $tid\ " > " ;
echo ' ' . i18n ( 'Empty All Members' ) . ' ' ;
echo '<img border=0 src="' . $config [ 'SFIABDIRECTORY' ] . '/images/16/button_cancel.' . $config [ 'icon_extension' ] . '">' ;
echo '</a>' ;
echo '</td></tr>' ;
} else {
echo '<tr><td colspan="2">' ;
echo error ( i18n ( 'Tour has no members' ), 'inline' );
echo '</td></tr>' ;
2007-12-19 07:49:38 +00:00
}
2025-01-29 03:30:48 +00:00
}
2007-12-19 07:49:38 +00:00
2025-01-29 03:30:48 +00:00
echo '</table>' ;
2007-12-19 07:49:38 +00:00
2025-01-29 03:30:48 +00:00
echo '<br />' ;
2007-12-19 07:49:38 +00:00
2025-01-29 03:30:48 +00:00
echo '</td></tr>' ;
echo '</table>' ;
echo '</form>' ;
2007-12-19 07:49:38 +00:00
2025-01-29 03:30:48 +00:00
send_footer ();
2007-12-19 07:49:38 +00:00
?>