* 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. */ ?> 'committee_main.php', 'Administration' => 'admin/index.php', 'Judges' => 'admin/judges.php' ) ); ?> '; $action = null; if (get_value_from_array($_GET, 'actio')) $action = $_GET['action']; else if (get_value_from_array($_POST, 'action')) $action = $_POST['action']; if (get_value_from_array($_GET, 'edit')) $edit = $_GET['edit']; else if (get_value_from_array($_POST, 'edit')) $edit = $_POST['edit']; if (!get_value_from_2d_array($_SESSION, 'viewstate', 'judges_projects_list_show')) $_SESSION['viewstate']['judges_projects_list_show'] = 'unassigned'; // now update the judges_teams_list_show viewstate if (get_value_from_array($_GET, 'judges_projects_list_show')) $_SESSION['viewstate']['judges_projects_list_show'] = $_GET['judges_projects_list_show']; if (!get_value_from_2d_array($_SESSION, 'viewstate', 'judges_projects_list_eligible')) $_SESSION['viewstate']['judges_projects_list_eligible'] = 'true'; // now update the judges_teams_list_show viewstate if (get_value_from_array($_GET, 'judges_projects_list_eligible')) $_SESSION['viewstate']['judges_projects_list_eligible'] = $_GET['judges_projects_list_eligible']; if (get_value_from_array($_GET, 'action') == 'delete' && $_GET['delete'] && $_GET['edit']) { $stmt = $pdo->prepare("DELETE FROM judges_teams_timeslots_projects_link WHERE id='" . $_GET['delete'] . "'"); $stmt->execute(); echo happy(i18n('Judging team project successfully removed')); $action = 'edit'; } if (get_value_from_array($_POST, 'action') == 'assign' && $_POST['edit'] && $_POST['timeslot'] && $_POST['project_id']) { $stmt = $pdo->prepare("INSERT INTO judges_teams_timeslots_projects_link (judges_teams_id,judges_timeslots_id,projects_id,year) VALUES ('" . $_POST['edit'] . "','" . $_POST['timeslot'] . "','" . $_POST['project_id'] . "','" . $config['FAIRYEAR'] . "')"); $stmt->execute(); echo happy(i18n('Project assigned to team timeslot')); } $q = $pdo->prepare("SELECT DISTINCT(date) AS d FROM judges_timeslots WHERE year='" . $config['FAIRYEAR'] . "'"); $q->execute(); if ($q->rowCount() > 1) $show_date = true; else $show_date = false; if (($action == 'edit' || $action == 'assign') && $edit) { echo 'Back to Judging Teams Projects List'; echo '
'; echo "\n"; echo "\n"; echo "\n"; $team = getJudgingTeam($edit); echo '' . $team['name'] . ' (#' . $team['num'] . ')
'; if (count($team['members'])) { $memberlist = '  '; foreach ($team['members'] as $member) { if ($member['captain'] == 'yes') $memberlist .= ''; $memberlist .= $member['firstname'] . ' ' . $member['lastname']; if ($member['captain'] == 'yes') $memberlist .= ''; $memberlist .= ', '; } echo '' . i18n('Judging Team Members') . ': '; $memberlist = substr($memberlist, 0, -2); echo '
'; } else $memberlist = error(i18n('Team has no members assigned to it. Assign Judges Here')); echo $memberlist; echo '
'; echo '
'; // we need award_ids for use below to get the eligible projects, so lets build the array here while we're displaying the awards $award_ids = array(); if (count($team['awards'])) { $awardlist = '  '; foreach ($team['awards'] as $award) { $awardlist .= $award['name']; $awardlist .= ', '; $award_ids[] = $award['id']; } echo '' . i18n('Judging Team Awards') . ': '; $awardlist = substr($awardlist, 0, -2); echo '
'; } else $awardlist = error(i18n('Team has no awards assigned to it. Assign Awards Here')); echo $awardlist; // get the timeslots that this team has. $q = $pdo->prepare("SELECT judges_timeslots.id, judges_timeslots.date, judges_timeslots.starttime, judges_timeslots.endtime FROM judges_timeslots, judges_teams, judges_teams_timeslots_link WHERE judges_teams.id='" . $team['id'] . "' AND judges_teams.id=judges_teams_timeslots_link.judges_teams_id AND judges_timeslots.id=judges_teams_timeslots_link.judges_timeslots_id ORDER BY date,starttime "); $q->execute(); $numslots = $q - rowCount(); if ($numslots) { echo '
'; echo '
'; if ($_SESSION['viewstate']['judges_projects_list_eligible'] == 'true') $ch = 'checked="checked"'; else $ch = ''; echo " " . i18n('Only show projects eligible/nominated for awards assigned to this team'); echo ''; echo ''; echo ''; if ($_SESSION['viewstate']['judges_projects_list_show'] == 'all') { echo "'; echo ''; } else { echo ''; echo "'; } echo ''; echo ''; echo ''; echo '
" . i18n('show unassigned') . '' . i18n('show all') . '' . i18n('show unassigned') . '" . i18n('show all') . ' 
'; if ($_SESSION['viewstate']['judges_projects_list_show'] == 'all') { $querystr = 'SELECT projects.id, projects.projectnumber, projects.title, registrations.status FROM projects, registrations WHERE projectnumber is not null ' . getJudgingEligibilityCode() . " AND projects.registrations_id=registrations.id AND projects.year='" . $config['FAIRYEAR'] . "' ORDER BY projectnumber"; } else if ($_SESSION['viewstate']['judges_projects_list_show'] == 'unassigned') { $querystr = "SELECT projects.id, projects.projectnumber, projects.title, registrations.status FROM projects LEFT JOIN judges_teams_timeslots_projects_link ON projects.id = judges_teams_timeslots_projects_link.projects_id, registrations WHERE projectnumber is not null ' . getJudgingEligibilityCode(). ' AND projects.registrations_id=registrations.id AND judges_teams_timeslots_projects_link.projects_id IS NULL AND projects.year='" . $config['FAIRYEAR'] . "' ORDER BY projectnumber"; } $pq = $pdo->prepare($querystr); $pq->execute(); show_pdo_errors_if_any($pdo); $eligibleprojects = getProjectsEligibleOrNominatedForAwards($award_ids); // echo nl2br(print_r($eligibleprojects,true)); // the keys are the project numbers, so lets get an array of those too so we can use in_array below $eligibleprojectsnumbers = array_keys($eligibleprojects); // echo nl2br(print_r($eligibleprojects,true)); $numprojects = 0; echo ''; echo ''; echo i18n('%1 projects listed', array($numprojects)); echo '
'; echo '
'; echo '
'; echo ''; echo ''; echo ''; echo ''; echo ''; while ($r = $q->fetch(PDO::FETCH_OBJ)) { echo ''; } echo '
' . i18n('Timeslot') . '' . i18n('Project') . '
'; echo ''; if ($show_date) echo format_date($r->date) . ' '; echo format_time($r->starttime); echo ' - '; echo format_time($r->endtime); echo ''; echo ''; $projq = $pdo->prepare("SELECT judges_teams_timeslots_projects_link.id AS link_id, projects.projectnumber, projects.id, projects.title FROM projects, judges_teams_timeslots_projects_link WHERE judges_teams_timeslots_projects_link.judges_timeslots_id='$r->id' AND judges_teams_timeslots_projects_link.judges_teams_id='" . $team['id'] . "' AND judges_teams_timeslots_projects_link.projects_id=projects.id AND judges_teams_timeslots_projects_link.year='" . $config['FAIRYEAR'] . "' ORDER BY projectnumber "); $projq->execute(); show_pdo_errors_if_any($pdo); while ($proj = $projq->fetch(PDO::FETCH_OBJ)) { echo ''; echo "$proj->projectnumber - $proj->title
"; } echo "id]\" type=\"button\" onclick=\"assign('$r->id')\" value=\"" . i18n('Assign') . '">'; echo '
'; } else { echo error(i18n('Team has no timeslots assigned to it. Assign Timeslots Here')); } echo '
'; } else { echo ''; echo ''; echo ''; echo ''; echo ''; echo ''; $teams = getJudgingTeams(); foreach ($teams as $team) { echo ''; echo ''; echo ''; echo ''; } echo '
' . i18n('Team') . '' . i18n('Timeslots and Projects') . '
'; echo '' . $team['name'] . ' (#' . $team['num'] . ')
'; $memberlist = ''; if (count(get_value_from_array($team, 'members', []))) { foreach ($team['members'] as $member) { echo '  '; $err = false; foreach ($team['languages_projects'] as $projectlang) { if (!in_array($projectlang, $member['languages_array'])) { $err = true; break; } } if ($err) echo ''; if ($member['captain'] == 'yes') echo ''; echo $member['firstname'] . ' ' . $member['lastname'] . ' (' . $member['languages'] . ')
'; if ($member['captain'] == 'yes') echo '
'; if ($err) echo '
'; } } echo '
'; // get the timeslots that this team has. $q = $pdo->prepare("SELECT judges_timeslots.id, judges_timeslots.date, judges_timeslots.starttime, judges_timeslots.endtime FROM judges_timeslots, judges_teams, judges_teams_timeslots_link WHERE judges_teams.id='" . $team['id'] . "' AND judges_teams.id=judges_teams_timeslots_link.judges_teams_id AND judges_timeslots.id=judges_teams_timeslots_link.judges_timeslots_id ORDER BY date,starttime "); $q->execute(); $numslots = $q->rowCount(); echo '' . i18n('Edit team project assignments') . ''; echo ''; while ($r = $q->fetch(PDO::FETCH_OBJ)) { echo ''; } echo '
'; echo ''; if ($show_date) echo format_date($r->date) . ' '; echo format_time($r->starttime); echo ' - '; echo format_time($r->endtime); echo ''; echo ''; $projq = $pdo->prepare("SELECT projects.projectnumber, projects.id, projects.title, projects.language FROM projects, judges_teams_timeslots_projects_link WHERE judges_teams_timeslots_projects_link.judges_timeslots_id='$r->id' AND judges_teams_timeslots_projects_link.judges_teams_id='" . $team['id'] . "' AND judges_teams_timeslots_projects_link.projects_id=projects.id AND judges_teams_timeslots_projects_link.year='" . $config['FAIRYEAR'] . "' ORDER BY projectnumber "); $projq->execute(); show_pdo_errors_if_any($pdo); while ($proj = $projq->fetch(PDO::FETCH_OBJ)) { if (!in_array($proj->language, $team['languages_members'])) echo ''; echo "$proj->projectnumber - $proj->title ($proj->language)"; if (!in_array($proj->language, $team['languages_members'])) echo "\n"; echo '
'; } echo '
'; echo '
'; } send_footer(); ?>