query("SELECT * FROM signatures WHERE year='{$sig_year}'"); while($r = $q->fetch_assoc()) { $sig = signature_load($mysqli, NULL, $r); $uid = $sig['uid']; if(!array_key_exists($uid, $sigs)) { $sigs[$uid] = array(); } $sigs[$uid][$sig['type']] = $sig; } $flags = ENT_QUOTES; if(PHP_VERSION_ID >= 50400) $flags |= ENT_HTML401; /* Begin a report */ $pdf=new pdf( "E-Signatures" , $sig_year ); $pdf->setFontSize(9); $sig_types = array('student', 'parent', 'teacher'); foreach($projects as $pid=>&$project) { foreach($project['students'] as &$student) { $uid = $student['uid']; /* If a specific UID is specified, and it's not what we're looking for, skip it */ if($sig_uid != -1 && !$sig_uid != $uid) { // print("$uid mismatch"); continue; } if(!array_key_exists($uid, $sigs)) { // print("$uid doesn't exist"); continue; } $school = school_load($mysqli, $student['schools_id']); /* See if the signature exists */ foreach($sig_types as $sig_type) { if(!array_key_exists($sig_type, $sigs[$uid])) { continue; } $sig = $sigs[$uid][$sig_type]; /* Generate some HTML for the sig page */ $pdf->AddPage(); $already = ""; if($sig['date_signed'] != '0000-00-00 00:00:00') { $already = "This form was signed on ". date('F j, g:ia', strtotime($sig['date_signed'])); } $decl = cms_get($mysqli, "sig_{$sig_type}_declaration", $student); $html = "
Please review the Project Information and Declaration(s) below. If you agree to the declaration(s), type in your name in the box below in lieu of a signature and submit this form. This will function as your electronic signature and you do not need to sign the paper signature form.
If you have any questions or concerns, please contact us at {$config['email_registration']}"; if($sig_type == 'student') { $html .="
If you do not agree to use an electronic signature, please print the paper signature form and submit that."; } else { $html .="
If you do not agree to use an electronic signature, please request a paper copy of the signature form from the student and sign that."; } $html .= "
Student: | ".htmlentities($student['name'], $flags , "UTF-8")." |
Project Title: | ".htmlentities($project['title'], $flags , "UTF-8")." |
School: | ".htmlentities($school['school'], $flags , "UTF-8")." |
".nl2br($decl).""; $html .= "
".nl2br($rel_of_info).""; $html .= "
"; if($sig_type == 'student') { $html .=""; $html .= "If you do not agree to the use of an electronic signature, please print a paper copy of this form to sign and submit it to the Science Fair Committee."; } else { $html .="
If you do not agree to the use of an electronic signature, please ask the student to print a paper copy of this form to sign and have the student submit that to the Science Fair Committee."; } $html .= "