2006-01-18 05:22:58 +00:00
< ?
2025-01-29 03:30:48 +00:00
include 'common.inc.php' ;
2006-01-18 05:22:58 +00:00
2025-01-28 17:33:03 -05:00
global $pdo ;
2025-01-29 03:30:48 +00:00
if ( $_SESSION [ 'schoolid' ] && $_SESSION [ 'schoolaccesscode' ]) {
send_header ( 'School Participant Invitations' );
2006-01-18 05:22:58 +00:00
2025-01-29 03:30:48 +00:00
echo '<a href="schoolaccess.php"><< ' . i18n ( 'Return to school access main page' ) . '</a><br />' ;
echo '<br />' ;
2025-02-03 03:04:15 +00:00
$q = $pdo -> prepare ( " SELECT * FROM schools WHERE id=? AND accesscode=? AND year=? " );
$q -> execute ([ $_SESSION [ 'schoolid' ], $_SESSION [ 'schoolaccesscode' ], $config [ 'FAIRYEAR' ]]);
2025-01-03 15:15:13 -05:00
show_pdo_errors_if_any ( $pdo );
2025-01-29 03:30:48 +00:00
$school = $q -> fetch ( PDO :: FETCH_OBJ );
if ( $school ) {
if ( $config [ 'participant_registration_type' ] == 'invite' || $config [ 'participant_registration_type' ] == 'openorinvite' ) {
if ( $_POST [ 'action' ] == 'invite' ) {
if ( $_POST [ 'firstname' ] && $_POST [ 'lastname' ] && $_POST [ 'email' ] && $_POST [ 'grade' ]) {
// make sure they arent already invited!
2025-02-03 03:04:15 +00:00
$q = $pdo -> prepare ( " SELECT firstname, lastname FROM students WHERE year=? AND email=? " );
$q -> execute ([ $config [ 'FAIRYEAR' ], $_POST [ 'email' ]]);
2025-01-29 03:30:48 +00:00
if ( $q -> rowCount ()) {
echo error ( i18n ( 'That students email address has already been invited' ));
} else {
$regnum = 0 ;
// now create the new registration record, and assign a random/unique registration number to then.
do {
// random number between
// 100000 and 999999 (six digit integer)
$regnum = rand ( 100000 , 999999 );
2025-02-03 03:04:15 +00:00
$q = $pdo -> prepare ( " SELECT * FROM registrations WHERE num? AND year=? " );
$q -> execute ([ $regnum , $config [ 'FAIRYEAR' ]]);
2025-01-29 03:30:48 +00:00
} while ( $q -> rowCount () > 0 );
2006-01-18 05:22:58 +00:00
2025-01-29 03:30:48 +00:00
// actually insert it
$stmt = $pdo -> prepare ( 'INSERT INTO registrations (num,email,emailcontact,start,status,year) VALUES ('
. " ' $regnum ', "
. " ' " . $_POST [ 'email' ] . " ', "
. " ' " . $_POST [ 'emailcontact' ] . " ', "
. 'NOW(),'
. " 'open', "
. $config [ 'FAIRYEAR' ]
. ')' );
2024-12-09 01:06:15 -05:00
$stmt -> execute ();
2025-01-29 03:30:48 +00:00
$regid = $pdo -> lastInsertId ();
2006-01-18 05:22:58 +00:00
2024-12-09 01:06:15 -05:00
$stmt = $pdo -> prepare ( " INSERT INTO students (registrations_id,email,firstname,lastname,schools_id,grade,year) VALUES (
2006-01-18 05:22:58 +00:00
'$regid' ,
2025-01-29 03:30:48 +00:00
'" . $_POST[' email '] . "' ,
'" . $_POST[' firstname '] . "' ,
'" . $_POST[' lastname '] . "' ,
'" . $_SESSION[' schoolid '] . "' ,
'" . $_POST[' grade '] . "' ,
'" . $config[' FAIRYEAR '] . "' ) " );
2024-12-09 01:06:15 -05:00
$stmt -> execute ();
2006-01-18 05:22:58 +00:00
2025-01-29 03:30:48 +00:00
email_send ( 'new_participant' , $_POST [ 'email' ], array (), array ( 'REGNUM' => $regnum , 'EMAIL' => $_POST [ 'email' ]));
if ( $_POST [ 'emailcontact' ])
email_send ( 'new_participant' , $_POST [ 'emailcontact' ], array (), array ( 'REGNUM' => $regnum , 'EMAIL' => $_POST [ 'email' ]));
echo happy ( i18n ( 'The participant has been successfully invited' ));
2006-01-18 05:22:58 +00:00
}
2025-01-29 03:30:48 +00:00
} else
echo error ( i18n ( 'All fields are required for invitations' ));
2006-01-18 05:22:58 +00:00
}
2025-01-29 03:30:48 +00:00
if ( $_GET [ 'action' ] == 'uninvite' ) {
// first, make sure that this is really their student, and it sfor this year.
2025-02-03 03:04:15 +00:00
$q = $pdo -> prepare ( " SELECT * FROM students WHERE id=? AND year=? AND schools_id=? " );
$q -> execute ([ $_GET [ 'uninvite' ], $config [ 'FAIRYEAR' ], $_SESSION [ 'schoolid' ]]);
2025-01-29 03:30:48 +00:00
if ( $q -> rowCount ()) {
$r = $q -> fetch ( PDO :: FETCH_OBJ );
$registrations_id = $r -> registrations_id ;
if ( $registrations_id ) // just to be safe!
2006-01-18 05:22:58 +00:00
{
2025-02-03 03:04:15 +00:00
$stmt = $pdo -> prepare ( " DELETE FROM students WHERE registrations_id=? " );
$stmt -> execute ([ $registrations_id ]);
$stmt = $pdo -> prepare ( " DELETE FROM projects WHERE registrations_id=? " );
$stmt -> execute ([ $registrations_id ]);
$stmt = $pdo -> prepare ( " DELETE FROM mentors WHERE registrations_id=? " );
$stmt -> execute ([ $registrations_id ]);
$stmt = $pdo -> prepare ( " DELETE FROM safety WHERE registrations_id=? " );
$stmt -> execute ([ $registrations_id ]);
$stmt = $pdo -> prepare ( " DELETE FROM emergencycontact WHERE registrations_id=? " );
$stmt -> execute ([ $registrations_id ]);
$stmt = $pdo -> prepare ( " DELETE FROM registrations WHERE id=? " );
$stmt -> execute ([ $registrations_id ]);
2006-01-18 05:22:58 +00:00
2025-01-29 03:30:48 +00:00
echo happy ( i18n ( 'Student successfully uninvited' ));
2006-01-18 05:22:58 +00:00
}
2025-01-29 03:30:48 +00:00
} else
echo error ( i18n ( 'Invalid student to uninvite' ));
2006-01-18 05:22:58 +00:00
}
2025-02-03 03:04:15 +00:00
$q = $pdo -> prepare ( " SELECT (NOW()>? AND NOW()<?) AS datecheck " );
$q -> execute ([ $config [ 'dates' ][ 'regopen' ], $config [ 'dates' ][ 'regclose' ]]);
2025-01-29 03:30:48 +00:00
$datecheck = $q -> fetch ( PDO :: FETCH_OBJ );
2006-01-18 05:22:58 +00:00
2025-01-29 03:30:48 +00:00
$q = $pdo -> prepare ( " SELECT \t
2012-03-02 20:10:22 +00:00
students .* ,
2007-11-15 21:30:11 +00:00
registrations . num ,
registrations . emailcontact
2006-01-18 05:22:58 +00:00
FROM
students ,
registrations
WHERE
2025-01-29 03:30:48 +00:00
students . schools_id = '" . $school->id . "'
AND students . year = '" . $config[' FAIRYEAR '] . "'
2006-01-18 05:22:58 +00:00
AND students . registrations_id = registrations . id
2012-03-02 20:10:22 +00:00
GROUP BY registrations . num
2006-01-18 05:22:58 +00:00
ORDER BY
lastname ,
firstname " );
2024-12-09 01:06:15 -05:00
$q -> execute ();
2025-01-29 03:30:48 +00:00
$currentinvited = $q -> rowCount ();
2007-01-02 23:38:53 +00:00
2025-01-29 03:30:48 +00:00
if ( $datecheck != 0 ) {
2006-01-18 05:22:58 +00:00
echo i18n ( " In order for your school's students to register for the fair, you will need to invite them to register. Simply enter their email address below to invite them to register. <b>Important</b>: for group projects, only add one of the participants, that participant will then add the other group member(s) to the project " );
2025-01-29 03:30:48 +00:00
echo '<br />' ;
echo '<br />' ;
$okaygrades = array ();
if ( $config [ 'participant_registration_type' ] == 'invite' ) {
if ( $school -> projectlimitper == 'total' ) {
if ( $school -> projectlimit ) {
if ( $currentinvited < $school -> projectlimit ) {
echo i18n ( 'You have invited %1 of %2 total projects for your school' , array ( $currentinvited , $school -> projectlimit ));
for ( $a = $config [ 'mingrade' ]; $a <= $config [ 'maxgrade' ]; $a ++ )
$okaygrades [] = $a ;
} else {
echo error ( i18n ( 'You have invited %1 of %2 total projects for your school' , array ( $currentinvited , $school -> projectlimit )));
2012-02-27 20:33:15 +00:00
}
2025-01-29 03:30:48 +00:00
} else {
echo i18n ( 'You have invited %1 project(s) for your school' , array ( $currentinvited , $school -> projectlimit ));
for ( $a = $config [ 'mingrade' ]; $a <= $config [ 'maxgrade' ]; $a ++ )
$okaygrades [] = $a ;
2007-01-02 23:38:53 +00:00
}
2025-01-29 03:30:48 +00:00
} else if ( $school -> projectlimitper == 'agecategory' ) {
echo '<br />' ;
2025-02-03 03:04:15 +00:00
$catq = $pdo -> prepare ( " SELECT * FROM projectcategories WHERE year=? ORDER BY id " );
$catq -> execute ([ $config [ 'FAIRYEAR' ]]);
2025-01-29 03:30:48 +00:00
while ( $catr = $catq -> fetch ( PDO :: FETCH_OBJ )) {
$q2 = $pdo -> prepare ( " SELECT COUNT(students.id) AS num
2007-01-02 23:38:53 +00:00
FROM
students ,
registrations
WHERE
2025-01-29 03:30:48 +00:00
students . schools_id = '" . $school->id . "'
2007-01-02 23:38:53 +00:00
AND students . grade >= '$catr->mingrade'
AND students . grade <= '$catr->maxgrade'
2025-01-29 03:30:48 +00:00
AND students . year = '" . $config[' FAIRYEAR '] . "'
2007-01-02 23:38:53 +00:00
AND students . registrations_id = registrations . id
2012-03-02 20:10:22 +00:00
GROUP BY registrations . num
2007-01-02 23:38:53 +00:00
" );
2024-12-09 01:06:15 -05:00
$q2 -> execute ();
2025-01-29 03:30:48 +00:00
show_pdo_errors_if_any ( $pdo );
$r2 = $q2 -> fetch ( PDO :: FETCH_OBJ );
$currentinvited = $r2 -> num ;
2007-01-02 23:38:53 +00:00
2025-01-29 03:30:48 +00:00
if ( $currentinvited < $school -> projectlimit || $school -> projectlimit == 0 ) {
for ( $a = $catr -> mingrade ; $a <= $catr -> maxgrade ; $a ++ )
$okaygrades [] = $a ;
2007-01-02 23:38:53 +00:00
}
2025-01-29 03:30:48 +00:00
echo i18n ( 'You have invited %1 of %2 total projects for for the %3 age category' , array ( $currentinvited , $school -> projectlimit , i18n ( $catr -> category )));
echo '<br />' ;
2006-01-18 05:22:58 +00:00
}
2025-01-29 03:30:48 +00:00
} else {
// hmm projectlimitper has not been set
// so we have no limits, anyone can register or they can add as many as they want.
for ( $x = $config [ 'mingrade' ]; $x <= $config [ 'maxgrade' ]; $x ++ )
$okaygrades [] = $x ;
2006-01-18 05:22:58 +00:00
}
2025-01-29 03:30:48 +00:00
} else {
// this could be an else if $config['participant_registration_type']=="openorinvite" )
// because openorinvite is the only other option
2006-01-18 05:22:58 +00:00
2025-01-29 03:30:48 +00:00
// so we have no limits, anyone can register or they can add as many as they want.
// you cannot enforce limits when the system is 'open' because anyone can choose any school
// and if its openorinvite then whatever happens in the inviter still morepeople can be added
// by themselves, so there's no point in having limits.
for ( $x = $config [ 'mingrade' ]; $x <= $config [ 'maxgrade' ]; $x ++ )
$okaygrades [] = $x ;
2006-01-18 05:22:58 +00:00
}
2025-01-29 03:30:48 +00:00
echo '<br />' ;
2006-01-18 05:22:58 +00:00
2025-01-29 03:30:48 +00:00
if ( count ( $okaygrades )) {
echo '<form method=POST action="schoolinvite.php">' ;
echo '<input type=hidden name=action value="invite">' ;
2006-01-18 05:22:58 +00:00
2025-01-29 03:30:48 +00:00
echo '<table>' ;
echo '<tr><td><nobr>' . i18n ( 'Student Email Address' ) . '</nobr></td><td><input type="text" name="email" /></td><td>' . i18n ( 'Or unique username for student' ) . '</td></tr>' ;
echo '<tr><td><nobr>' . i18n ( 'Contact Email Address' ) . '</nobr></td><td><input type="text" name="emailcontact" /></td><td>' . i18n ( 'Any emails that would normally go to the student, will also be sent to this address' ) . '</td></tr>' ;
echo '<tr><td><nobr>' . i18n ( 'Student First Name' ) . '</nobr></td><td colspan="2"><input type="text" name="firstname" /></td></tr>' ;
echo '<tr><td><nobr>' . i18n ( 'Student Last Name' ) . '</nobr></td><td colspan="2"><input type="text" name="lastname" /></td></tr>' ;
echo '<tr><td><nobr>' . i18n ( 'Grade' ) . '</nobr></td><td colspan="2">' ;
2006-01-18 05:22:58 +00:00
echo " <select name= \" grade \" > \n " ;
2025-01-29 03:30:48 +00:00
echo '<option value="">' . i18n ( 'Select Grade' ) . " </option> \n " ;
// for($gr=$config['mingrade'];$gr<=$config['maxgrade'];$gr++)
foreach ( $okaygrades AS $gr ) {
2006-01-18 05:22:58 +00:00
echo " <option value= \" $gr\ " > $gr </ option > \n " ;
}
2025-01-29 03:30:48 +00:00
echo '</td></tr>' ;
2006-01-18 05:22:58 +00:00
2025-01-29 03:30:48 +00:00
echo '</table>' ;
echo '<input type="submit" value="' . i18n ( 'Invite Participant' ) . '">' ;
echo '</form>' ;
} else {
echo notice ( i18n ( 'You have invited the maximum number of participants for your school' ));
2006-01-18 05:22:58 +00:00
}
}
2025-01-29 03:30:48 +00:00
echo '<br />' ;
2006-01-18 05:22:58 +00:00
2025-01-29 03:30:48 +00:00
echo '<h4>' . i18n ( 'Invited participants from your school' ) . '</h4>' ;
if ( $q -> rowCount ()) {
echo '<table class="summarytable">' ;
echo '<tr><th>' . i18n ( 'Last Name' ) . '</th><th>' . i18n ( 'First Name' ) . '</th>' ;
echo '<th>' . i18n ( 'Email Address' ) . '</th>' ;
echo '<th>' . i18n ( 'Grade' ) . '</th>' ;
echo '<th>' . i18n ( 'Registration Number' ) . '</th>' ;
echo '<th colspan="2">' . i18n ( 'Actions' ) . '</th></tr>' ;
2006-01-18 05:22:58 +00:00
2025-01-29 03:30:48 +00:00
while ( $r = $q -> fetch ( PDO :: FETCH_OBJ )) {
echo " <tr><td> $r->lastname </td><td> $r->firstname </td> " ;
echo " <td> $r->email " ;
if ( $r -> emailcontact )
echo " / $r->emailcontact " ;
echo '</td>' ;
echo " <td align= \" center \" > $r->grade </td> " ;
echo " <td align= \" center \" > $r->num </td> " ;
echo '<td align="center">' ;
echo '<form target="_blank" method="post" action="register_participants.php">' ;
echo '<input type="hidden" name="action" value="continue">' ;
echo " <input type= \" hidden \" name= \" email \" value= \" $r->email\ " > " ;
echo " <input type= \" hidden \" name= \" regnum \" value= \" $r->num\ " > " ;
echo '<input type="submit" value="' . i18n ( 'Login' ) . '">' ;
echo '</form>' ;
echo '</td><td>' ;
echo " <a onclick= \" return confirmClick('Are you sure you want to uninvite this student?') \" href= \" schoolinvite.php?action=uninvite&uninvite= $r->id\ " >< img border = 0 src = \ " " . $config [ 'SFIABDIRECTORY' ] . '/images/16/button_cancel.' . $config [ 'icon_extension' ] . '"></a>' ;
echo '</td>' ;
echo '</tr>' ;
}
echo '</table>' ;
} else {
echo i18n ( 'You have not yet invited any participants from your school' );
2006-01-18 05:22:58 +00:00
}
}
2025-01-29 03:30:48 +00:00
} else {
echo error ( i18n ( 'Invalid School ID or Access Code' ));
echo '<br />' ;
echo '<a href="schoolaccess.php">' . i18n ( 'Perhaps you should login first' ) . '</a>' ;
2006-01-18 05:22:58 +00:00
}
send_footer ();
2025-01-29 03:30:48 +00:00
} else {
header ( 'Location: schoolaccess.php' );
2007-05-10 19:18:01 +00:00
exit ;
2006-01-18 05:22:58 +00:00
}
?>