* Copyright (C) 2005 James Grant * Copyright (C) 2024 AlgoLibre Inc. * * 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. */ ?> newPage(); $rep->setFontSize(11); } else if ($type == 'csv') { $rep = new lcsv(i18n('Project Judging Team Assignments')); } $teams = getJudgingTeams(); $q = $pdo->prepare("SELECT DISTINCT(date) AS d FROM judges_timeslots WHERE year=?"); $q->execute([$config['FAIRYEAR']]); if ($q->rowCount() > 1) $show_date = true; else $show_date = false; $projq = $pdo->prepare("SELECT registrations.id AS reg_id, registrations.num AS reg_num, projects.id, projects.title, projects.projectnumber, projects.projectdivisions_id, projects.projectcategories_id, projectdivisions.division, projectcategories.category FROM registrations LEFT JOIN projects ON projects.registrations_id=registrations.id LEFT JOIN projectdivisions ON projectdivisions.id=projects.projectdivisions_id LEFT JOIN projectcategories ON projectcategories.id=projects.projectcategories_id WHERE projects.year=? AND projectdivisions.year=? AND projectcategories.year=? AND ( registrations.status='complete' \t OR registrations.status='paymentpending' ) ORDER BY projects.projectnumber "); $projq->execute([$config['FAIRYEAR'],$config['FAIRYEAR'],$config['FAIRYEAR']]); show_pdo_errors_if_any($pdo); while ($proj = $projq->fetch(PDO::FETCH_OBJ)) { $rep->heading('(' . $proj->projectnumber . ') ' . $proj->title); $sq = $pdo->prepare("SELECT students.firstname, students.lastname FROM students WHERE students.registrations_id=? "); $sq->execute([$proj->reg_id]); $students = ''; $studnum = 0; while ($studentinfo = $sq->fetch(PDO::FETCH_OBJ)) { if ($studnum > 0) $students .= ', '; $students .= "$studentinfo->firstname $studentinfo->lastname"; $studnum++; } $rep->addText($students); $rep->nextLine(); $table = array(); $table['header'] = array(i18n('Timeslot'), i18n('Judging Team')); if ($show_date) $table['widths'] = array(2.5, 4.5); else $table['widths'] = array(1.5, 5.5); $table['dataalign'] = array('center', 'left'); // get the timeslots that this project has assigned to been judged. $q = $pdo->prepare("SELECT judges_timeslots.date, judges_timeslots.starttime, judges_timeslots.endtime, judges_teams.name FROM judges_teams_timeslots_projects_link LEFT JOIN judges_timeslots ON judges_teams_timeslots_projects_link.judges_timeslots_id=judges_timeslots.id LEFT JOIN judges_teams ON judges_teams_timeslots_projects_link.judges_teams_id=judges_teams.id WHERE judges_teams_timeslots_projects_link.projects_id=? AND judges_teams_timeslots_projects_link.year=? ORDER BY date,starttime "); $q->execute([$proj->id,$config['FAIRYEAR']]); $numslots = $q->rowCount(); while ($r = $q->fetch(PDO::FETCH_OBJ)) { if ($show_date) $timeslot = format_date($r->date) . ' '; else $timeslot = ''; $timeslot .= format_time($r->starttime) . ' - ' . format_time($r->endtime); $table['data'][] = array($timeslot, $r->name); } $rep->addTable($table); $rep->newPage(); unset($table); } $rep->output(); ?>