forked from science-ation/science-ation
1173 lines
34 KiB
PHP
1173 lines
34 KiB
PHP
|
<?php
|
||
|
/*
|
||
|
This file is part of the 'Science Fair In A Box' project
|
||
|
SFIAB Website: http://www.sfiab.ca
|
||
|
|
||
|
Copyright (C) 2005 Sci-Tech Ontario Inc <info@scitechontario.org>
|
||
|
Copyright (C) 2005 James Grant <james@lightbox.org>
|
||
|
|
||
|
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.
|
||
|
*/
|
||
|
require_once('common.inc.php');
|
||
|
require_once('project.inc.php');
|
||
|
require_once('user.inc.php');
|
||
|
require_once('isef.inc.php');
|
||
|
|
||
|
|
||
|
function report_students_i18n_fr($mysqli, &$report, $field, $text)
|
||
|
{
|
||
|
return i18n($text, array(), array(), 'fr');
|
||
|
}
|
||
|
|
||
|
function report_student_cash_words($mysqli, &$report, $field, $text) {
|
||
|
return wordify($text, true);
|
||
|
}
|
||
|
|
||
|
function report_student_cash_cheque($mysqli, &$report, $field, $text) {
|
||
|
return sprintf("\$***%0.2f", $text);
|
||
|
}
|
||
|
|
||
|
function report_student_get_date_today($mysqli, &$report, $field, $text) {
|
||
|
return format_date(time());
|
||
|
}
|
||
|
|
||
|
function report_student_get_date_today_for_cheques($mysqli, &$report, $field, $text) {
|
||
|
global $config;
|
||
|
$format = $config['cheque_date_format'];
|
||
|
$format = str_replace(array('YYYY', 'MM', 'DD'), array('Y', 'm', 'd'), $format);
|
||
|
if(!(strlen($format) == 3 && strstr('Y', $format) !== null && strstr('m', $format) !== null && strstr('d', $format) !== null)){
|
||
|
$format = 'Ymd';
|
||
|
}
|
||
|
return implode(' ', preg_split('//', date($format), -1));
|
||
|
}
|
||
|
|
||
|
function report_student_get_cheque_date_format($mysqli, &$report, $field, $text){
|
||
|
global $config;
|
||
|
return implode(' ', preg_split('//', $config['cheque_date_format'], -1));
|
||
|
}
|
||
|
|
||
|
function reports_students_numstudents($mysqli, &$report, $field, $text)
|
||
|
{
|
||
|
$year = $report['year'];
|
||
|
$q = mysql_query("SELECT users.id FROM students
|
||
|
WHERE users.registrations_id='$text'
|
||
|
AND users.year='$year'");
|
||
|
return mysql_num_rows($q);
|
||
|
}
|
||
|
|
||
|
function reports_students_award_selfnom_num($mysqli, &$report, $field, $text, $n)
|
||
|
{
|
||
|
$year = $report['year'];
|
||
|
$q = mysql_query("SELECT awards.name FROM
|
||
|
projects
|
||
|
LEFT JOIN project_specialawards_link ON project_specialawards_link.projects_id=projects.id
|
||
|
LEFT JOIN awards ON awards.id=project_specialawards_link.awards_id
|
||
|
WHERE projects.id='$text'
|
||
|
AND projects.year='$year'
|
||
|
AND project_specialawards_link.year='$year'
|
||
|
LIMIT $n,1");
|
||
|
echo mysql_error();
|
||
|
$i = mysql_fetch_assoc($q);
|
||
|
return $i['name'];
|
||
|
}
|
||
|
function reports_students_award_selfnom_1($mysqli, &$report, $field, $text)
|
||
|
{
|
||
|
return reports_students_award_selfnom_num($report, $field, $text, 0);
|
||
|
}
|
||
|
function reports_students_award_selfnom_2($mysqli, &$report, $field, $text)
|
||
|
{
|
||
|
return reports_students_award_selfnom_num($report, $field, $text, 1);
|
||
|
}
|
||
|
function reports_students_award_selfnom_3($mysqli, &$report, $field, $text)
|
||
|
{
|
||
|
return reports_students_award_selfnom_num($report, $field, $text, 2);
|
||
|
}
|
||
|
function reports_students_award_selfnom_4($mysqli, &$report, $field, $text)
|
||
|
{
|
||
|
return reports_students_award_selfnom_num($report, $field, $text, 3);
|
||
|
}
|
||
|
function reports_students_award_selfnom_5($mysqli, &$report, $field, $text)
|
||
|
{
|
||
|
return reports_students_award_selfnom_num($report, $field, $text, 4);
|
||
|
}
|
||
|
function reports_students_school_principal($mysqli, &$report, $field, $text)
|
||
|
{
|
||
|
$year = $report['year'];
|
||
|
if($text > 0) { /* text is the uid */
|
||
|
$u = user_load_by_uid_year($text, $year);
|
||
|
return $u['name'];
|
||
|
}
|
||
|
return '';
|
||
|
}
|
||
|
|
||
|
function report_student_regfee_item($mysqli, &$report, $field, $text)
|
||
|
{
|
||
|
$year = $report['year'];
|
||
|
$id=intval(substr($field,12));
|
||
|
$q=mysql_query("SELECT regfee_items_id FROM regfee_items_link WHERE students_id='$text' AND regfee_items_id='$id'");
|
||
|
echo mysql_error();
|
||
|
if($r=mysql_fetch_object($q)) {
|
||
|
return i18n("Yes");
|
||
|
}
|
||
|
else {
|
||
|
return i18n("No");
|
||
|
}
|
||
|
}
|
||
|
|
||
|
|
||
|
|
||
|
function reports_students_isef_major($mysqli, &$report, $field, $text)
|
||
|
{
|
||
|
global $config;
|
||
|
/* Note that isef.inc.php must be included from reports.inc.php for this to work, because the
|
||
|
* function is executed in that scope */
|
||
|
global $isef_divs;
|
||
|
|
||
|
/* Given the project.isef_id, turn it into a name */
|
||
|
$id = (int)$text;
|
||
|
if($isef_divs[$id]['parent'] != false) {
|
||
|
$parent = $isef_divs[$id]['parent'];
|
||
|
foreach($isef_divs as $k => $i) {
|
||
|
if($i['div'] == $parent) {
|
||
|
return $i['name'];
|
||
|
}
|
||
|
}
|
||
|
return ("not found");
|
||
|
} else {
|
||
|
return $isef_divs[$id]['name'];
|
||
|
}
|
||
|
exit();
|
||
|
}
|
||
|
|
||
|
/*
|
||
|
$q = mysql_query("SELECT * FROM regfee_items WHERE year='{$config['FAIRYEAR']}'");
|
||
|
$regfeeitems=array();
|
||
|
$first=true;
|
||
|
while($i = mysql_fetch_assoc($q)) {
|
||
|
$regfeeitems["regfee_item_".$i['id']] = array (
|
||
|
'name' => "Registration Fee Items -- {$i['name']}",
|
||
|
'header' => $i['name'],
|
||
|
'width' => 1,
|
||
|
'table' => 'users.id',
|
||
|
'table_sort' => 'users.id',
|
||
|
'exec_function' => 'report_student_regfee_item');
|
||
|
|
||
|
if($first) $regfeeitems["regfee_item_".$i['id']]=array_merge($regfeeitems["regfee_item_".$i['id']],array( 'start_option_group' => 'Registration Fee Items'));
|
||
|
$first=false;
|
||
|
}
|
||
|
|
||
|
*/
|
||
|
|
||
|
function reports_students_registration_fee($mysqli, &$report, $field, $text)
|
||
|
{
|
||
|
$p = project_load($mysqli, $text);
|
||
|
$users = user_load_all_for_project($mysqli, $p['pid']);
|
||
|
|
||
|
list($regfee, $regfee_data) = compute_registration_fee($mysqli, $p, $users);
|
||
|
return (float)$regfee;
|
||
|
}
|
||
|
|
||
|
function reports_students_ethics_forms_required($mysqli, &$report, $field, $text)
|
||
|
{
|
||
|
$p = project_load($mysqli, $text);
|
||
|
$e =& $p['ethics'];
|
||
|
$ret = '';
|
||
|
if($e['human1']) $ret .= 'Human';
|
||
|
if($e['animals']) $ret .= 'Animal';
|
||
|
return $ret;
|
||
|
}
|
||
|
|
||
|
$report_students_fields = array(
|
||
|
'pn' => array(
|
||
|
'name' => 'Project Number',
|
||
|
'header' => '#',
|
||
|
'width' => 0.7,
|
||
|
'table' => 'projects.number',
|
||
|
'table_sort' => 'projects.number_sort, projects.number'),
|
||
|
|
||
|
'projectbarcode' => array(
|
||
|
'name' => 'Project Barcode',
|
||
|
'header' => 'Barcode',
|
||
|
'width' => 1,
|
||
|
'table' => 'projects.floor_number',
|
||
|
'table_sort' => 'projects.number_sort, projects.number',
|
||
|
),
|
||
|
|
||
|
'last_name' => array(
|
||
|
'start_option_group' => 'Student Name Information',
|
||
|
'name' => 'Student -- Last Name',
|
||
|
'header' => 'Last Name',
|
||
|
'width' => 1.0,
|
||
|
'table' => 'users.lastname' ),
|
||
|
|
||
|
'first_name' => array(
|
||
|
'name' => 'Student -- First Name',
|
||
|
'header' => 'First Name',
|
||
|
'width' => 1.0,
|
||
|
'table' => 'users.firstname' ),
|
||
|
|
||
|
'name' => array(
|
||
|
'name' => 'Student -- Full Name (last, first)',
|
||
|
'header' => 'Name',
|
||
|
'width' => 1.75,
|
||
|
'scalable' => true,
|
||
|
'table' => "CONCAT(users.lastname, ', ', users.firstname)",
|
||
|
'table_sort'=> 'users.lastname' ),
|
||
|
|
||
|
'namefl' => array(
|
||
|
'name' => 'Student -- Full Name (first last)',
|
||
|
'header' => 'Name',
|
||
|
'width' => 1.75,
|
||
|
'scalable' => true,
|
||
|
'table' => "CONCAT(users.firstname, ' ', users.lastname)",
|
||
|
'table_sort'=> 'users.lastname' ),
|
||
|
|
||
|
'partner' => array(
|
||
|
'name' => 'Student -- Partner Name (last, first)',
|
||
|
'header' => 'Partner',
|
||
|
'width' => 1.5,
|
||
|
'scalable' => true,
|
||
|
'table' => "CONCAT(student2.lastname, ', ', student2.firstname)",
|
||
|
'components' => array('partner') ),
|
||
|
|
||
|
'partnerfl' => array(
|
||
|
'name' => 'Student -- Partner Name (first last)',
|
||
|
'header' => 'Partner',
|
||
|
'width' => 1.5,
|
||
|
'scalable' => true,
|
||
|
'table' => "CONCAT(student2.firstname, ' ', student2.lastname)",
|
||
|
'components' => array('partner') ),
|
||
|
|
||
|
'bothnames' => array(
|
||
|
'name' => "Student -- Both Student Names",
|
||
|
'header' => 'Student(s)',
|
||
|
'width' => 3.0,
|
||
|
'scalable' => true,
|
||
|
'table' => "CONCAT(users.firstname, ' ', users.lastname, IF(student2.lastname IS NULL,'', CONCAT(', ', student2.firstname, ' ', student2.lastname)))",
|
||
|
'table_sort' => 'users.lastname',
|
||
|
'components' => array('partner') ),
|
||
|
|
||
|
'allnames' => array(
|
||
|
'name' => "Student -- All Student Names (REQUIRES MYSQL 5.0) ",
|
||
|
'header' => 'Student(s)',
|
||
|
'width' => 3.0,
|
||
|
'scalable' => true,
|
||
|
'table' => "GROUP_CONCAT(users.firstname, ' ', users.lastname ORDER BY users.lastname SEPARATOR ', ')",
|
||
|
'group_by' => array('users.s_pid')),
|
||
|
|
||
|
'pronunciation' => array(
|
||
|
'name' => 'Student -- Name Pronunciation',
|
||
|
'header' => 'Pronunciation',
|
||
|
'width' => 2.0,
|
||
|
'table' => 'users.pronounce'),
|
||
|
|
||
|
'email' => array(
|
||
|
'start_option_group' => 'Student Contact Information',
|
||
|
'name' => 'Student -- Email',
|
||
|
'header' => 'Email',
|
||
|
'width' => 2.25,
|
||
|
'scalable' => true,
|
||
|
'table' => 'users.email'),
|
||
|
|
||
|
'phone' => array(
|
||
|
'name' => 'Student -- Phone',
|
||
|
'header' => 'Phone',
|
||
|
'width' => 1.0,
|
||
|
'table' => 'users.phone1'),
|
||
|
|
||
|
'address' => array(
|
||
|
'name' => 'Student -- Street Address',
|
||
|
'header' => 'Address',
|
||
|
'width' => 2.0,
|
||
|
'scalable' => true,
|
||
|
'table' => 'users.address'),
|
||
|
|
||
|
'city' => array(
|
||
|
'name' => 'Student -- City',
|
||
|
'header' => 'City',
|
||
|
'width' => 1.5,
|
||
|
'table' => 'users.city' ),
|
||
|
|
||
|
'province' => array(
|
||
|
'name' => 'Student -- '.$config['provincestate'],
|
||
|
'header' => $config['provincestate'],
|
||
|
'width' => 0.75,
|
||
|
'table' => 'users.province' ),
|
||
|
|
||
|
'postal' => array(
|
||
|
'name' => 'Student -- '.$config['postalzip'],
|
||
|
'header' => $config['postalzip'],
|
||
|
'width' => 0.75,
|
||
|
'table' => 'users.postalcode' ),
|
||
|
|
||
|
'address_full' => array(
|
||
|
'name' => 'Student -- Full Address',
|
||
|
'header' => 'Address',
|
||
|
'width' => 3.0,
|
||
|
'scalable' => true,
|
||
|
'table' => "CONCAT(users.address, ', ', users.city, ', ', users.province, ', ', users.postalcode)" ),
|
||
|
|
||
|
|
||
|
'grade' => array(
|
||
|
'start_option_group' => 'Other Student Information',
|
||
|
'name' => 'Student -- Grade',
|
||
|
'header' => 'Gr.',
|
||
|
'width' => 0.3,
|
||
|
'table' => 'users.grade'),
|
||
|
|
||
|
'grade_str' => array(
|
||
|
'name' => 'Student -- Grade ("Grade x", not just the number)',
|
||
|
'header' => 'Gr.',
|
||
|
'width' => 0.3,
|
||
|
'table_sort' => 'users.grade',
|
||
|
'table' => "CONCAT('Grade ', users.grade)"),
|
||
|
|
||
|
'gender' => array(
|
||
|
'name' => 'Student -- Gender',
|
||
|
'header' => 'Gender',
|
||
|
'width' => 0.5,
|
||
|
'table' => 'users.sex',
|
||
|
'value_map' =>array ('male' => 'Male', 'female' => 'Female')),
|
||
|
|
||
|
'birthdate' => array(
|
||
|
'name' => 'Student -- Birthdate',
|
||
|
'header' => 'Birthdate',
|
||
|
'width' => 0.9,
|
||
|
'table' => 'users.birthdate'),
|
||
|
|
||
|
'age' => array(
|
||
|
'name' => 'Student -- Age (when this report is created)',
|
||
|
'header' => 'Age',
|
||
|
'width' => 0.4,
|
||
|
'table' => "DATE_FORMAT(FROM_DAYS(TO_DAYS(NOW())-TO_DAYS(users.birthdate)), '%Y')+0",
|
||
|
'table_sort' => 'users.birthdate'),
|
||
|
|
||
|
'tshirt' => array(
|
||
|
'name' => 'Student -- T-Shirt Size',
|
||
|
'header' => 'T-Shirt',
|
||
|
'width' => 0.70,
|
||
|
'table' => 'users.tshirt',
|
||
|
'value_map' => array ('none' => '', 'xsmall' => 'X-Small', 'small' => 'Small', 'medium' => 'Medium',
|
||
|
'large' => 'Large', 'xlarge' => 'X-Large')),
|
||
|
|
||
|
'medicalalert' => array(
|
||
|
'name' => 'Student -- Medical Alert Info',
|
||
|
'header' => 'medical',
|
||
|
'width' => 2.0,
|
||
|
'table' => 'users.medicalalert'),
|
||
|
|
||
|
'foodreq' => array(
|
||
|
'name' => 'Student -- Food Requirements',
|
||
|
'header' => 'Food.Req.',
|
||
|
'width' => 2.0,
|
||
|
'table' => 'users.foodreq'),
|
||
|
|
||
|
'paid' => array(
|
||
|
'name' => 'Paid',
|
||
|
'header' => 'Paid',
|
||
|
'width' => '0.4',
|
||
|
'table' => 'users.s_paid',
|
||
|
'value_map' => array (1 => '', 0 => 'No')),
|
||
|
|
||
|
/* Project Information */
|
||
|
'title' => array(
|
||
|
'start_option_group' => 'Project Information',
|
||
|
'name' => 'Project -- Title',
|
||
|
'header' => 'Project Title',
|
||
|
'width' => 2.75,
|
||
|
'scalable' => true,
|
||
|
'table' => 'projects.title' ),
|
||
|
|
||
|
'division' => array(
|
||
|
'name' => 'Project -- Challenge',
|
||
|
'header' => 'Challenge',
|
||
|
'width' => 3.0,
|
||
|
'table' => 'challenges.name' ),
|
||
|
|
||
|
'div' => array(
|
||
|
'name' => 'Project -- Challenge Short Form' ,
|
||
|
'header' => 'Chal',
|
||
|
'width' => 0.4,
|
||
|
'table' => 'challenges.shortform' ),
|
||
|
|
||
|
'fr_division' => array(
|
||
|
'name' => 'Project -- Challenge (French)',
|
||
|
'header' => 'Challenge',
|
||
|
'width' => 3.0,
|
||
|
'table' => 'challenges.name',
|
||
|
'exec_function' => 'report_students_i18n_fr'),
|
||
|
|
||
|
'category' => array(
|
||
|
'name' => 'Project -- Category',
|
||
|
'header' => 'Category',
|
||
|
'width' => 1,
|
||
|
'table_sort' => 'categories.cat_id',
|
||
|
'table' => 'categories.name' ),
|
||
|
|
||
|
'cat' => array(
|
||
|
'name' => 'Project -- Category Short Form' ,
|
||
|
'header' => 'Cat.',
|
||
|
'width' => 0.4,
|
||
|
'table' => 'categories.shortform' ),
|
||
|
|
||
|
'fr_category' => array(
|
||
|
'name' => 'Project -- Category (French)',
|
||
|
'header' => 'Category',
|
||
|
'width' => 1,
|
||
|
'table_sort' => 'categories.cat_id',
|
||
|
'table' => 'categories.name',
|
||
|
'exec_function' => 'report_students_i18n_fr'),
|
||
|
|
||
|
'categorydivision' => array(
|
||
|
'name' => 'Project -- Category and Challenge',
|
||
|
'header' => 'Category/Challenge',
|
||
|
'width' => 3.5,
|
||
|
'table_sort' => 'categories.cat_id',
|
||
|
'table' => "CONCAT(categories.name,' - ', challenges.name)"),
|
||
|
|
||
|
'divisioncategory' => array(
|
||
|
'name' => 'Project -- Challenge and Category',
|
||
|
'header' => 'Challenge/Category',
|
||
|
'width' => 3.5,
|
||
|
'table_sort' => 'challenges.chal_id',
|
||
|
'table' => "CONCAT(challenges.name,' - ',categories.name)"),
|
||
|
|
||
|
'abstract' => array(
|
||
|
'name' => 'Project -- Abstract',
|
||
|
'header' => 'Project Abstract',
|
||
|
'width' => 4.00,
|
||
|
'scalable' => true,
|
||
|
'table' => 'projects.abstract' ),
|
||
|
|
||
|
'title_tagline_abstract' => array(
|
||
|
'name' => 'Project -- Title, Tagline, and Abstract',
|
||
|
'header' => 'Project Title and Abstract',
|
||
|
'width' => 5.00,
|
||
|
'scalable' => true,
|
||
|
'table' => "CONCAT('Title: ', projects.title, '\nSummary: ', projects.tagline, '\n', projects.abstract)" ),
|
||
|
|
||
|
'language' => array(
|
||
|
'name' => 'Project -- Language',
|
||
|
'header' => 'Lang',
|
||
|
'width' => 1.00,
|
||
|
'table' => 'projects.language' ),
|
||
|
|
||
|
'numstudents' => array(
|
||
|
'name' => 'Project -- Number of Students',
|
||
|
'header' => 'Stu.',
|
||
|
'width' => 0.5,
|
||
|
'table' => 'projects.num_students'),
|
||
|
|
||
|
'rank' => array(
|
||
|
'name' => 'Project -- Rank (left blank for judges to fill out)',
|
||
|
'header' => 'Rank',
|
||
|
'width' => 1.00,
|
||
|
'table' => '""' ),
|
||
|
|
||
|
'req_elec' => array(
|
||
|
'name' => 'Project -- If the project requires electricity',
|
||
|
'header' => 'Elec',
|
||
|
'width' => .5,
|
||
|
'table' => "projects.req_electricity",
|
||
|
'value_map' => array (0 => '', 1 => 'Yes')),
|
||
|
|
||
|
'project_floornumber' => array(
|
||
|
'name' => 'Project -- Floor Number',
|
||
|
'header' => 'Floor#',
|
||
|
'width' => .5,
|
||
|
'table' => "projects.floor_number"),
|
||
|
|
||
|
'req_special' => array(
|
||
|
'name' => 'Project -- Any special requirements the project has',
|
||
|
'header' => 'Special Requirements',
|
||
|
'width' => 3,
|
||
|
'table' => "projects.req_special"),
|
||
|
|
||
|
'regfee' => array(
|
||
|
'name' => 'Project -- Registration Fee (for the project, incl. all students)',
|
||
|
'header' => 'RegFee',
|
||
|
'width' => 1,
|
||
|
'total' => true,
|
||
|
'table' => 'users.s_pid',
|
||
|
'format' => '$%.02f',
|
||
|
'exec_function' => 'reports_students_registration_fee'),
|
||
|
|
||
|
'project_id' => array(
|
||
|
'name' => 'Project -- Registration ID',
|
||
|
'header' => 'Reg ID',
|
||
|
'width' => 1,
|
||
|
'table' => 'projects.pid' ),
|
||
|
|
||
|
'project_isef_major' => array(
|
||
|
'name' => 'Project -- ISEF Major Division',
|
||
|
'header' => 'ISEF',
|
||
|
'width' => 2,
|
||
|
'table' => 'projects.isef_id',
|
||
|
'exec_function' => 'reports_students_isef_major'),
|
||
|
|
||
|
'project_other_rsf_has_competed' => array(
|
||
|
'name' => 'Project -- Has competed at another RSF that selects projects for CWSF',
|
||
|
'header' => 'RSF Competed',
|
||
|
'width' => .5,
|
||
|
'table' => 'projects.cwsf_rsf_has_competed',
|
||
|
'value_map' => array (0 => 'No', 1 => 'Yes')),
|
||
|
|
||
|
'project_plan_to_compete_for_cwsf' => array(
|
||
|
'name' => 'Project -- Plans to compete at another RSF that selects projects for CWSF',
|
||
|
'header' => 'RSF Competed',
|
||
|
'width' => .5,
|
||
|
'table' => 'projects.cwsf_rsf_will_compete',
|
||
|
'value_map' => array (0 => 'No', 1 => 'Yes')),
|
||
|
|
||
|
'school' => array(
|
||
|
'start_option_group' => 'School Information',
|
||
|
'name' => 'School -- Name',
|
||
|
'header' => 'School Name',
|
||
|
'width' => 2.25,
|
||
|
'scalable' => true,
|
||
|
'table' => 'schools.school' ),
|
||
|
|
||
|
'schooladdr' => array(
|
||
|
'name' => 'School -- Full Address',
|
||
|
'header' => 'School Address',
|
||
|
'width' => 3.0,
|
||
|
'scalable' => true,
|
||
|
'table' => "CONCAT(schools.address, ', ', schools.city, ', ', schools.province, ', ', schools.postalcode)" ),
|
||
|
|
||
|
'teacher' => array(
|
||
|
'name' => 'School -- Teacher Name (as entered by the student)',
|
||
|
'header' => 'Teacher',
|
||
|
'width' => 1.5,
|
||
|
'table' => 'users.s_teacher' ),
|
||
|
|
||
|
'teacheremail' => array(
|
||
|
'name' => 'School -- Teacher Email (as entered by the student)',
|
||
|
'header' => 'Teacher Email',
|
||
|
'width' => 2.0,
|
||
|
'table' => 'users.s_teacher_email' ),
|
||
|
|
||
|
'school_phone' => array(
|
||
|
'name' => 'School -- Phone',
|
||
|
'header' => 'School Phone',
|
||
|
'width' => 1,
|
||
|
'table' => 'schools.phone' ),
|
||
|
|
||
|
'school_fax' => array(
|
||
|
'name' => 'School -- Fax',
|
||
|
'header' => 'School Fax',
|
||
|
'width' => 1,
|
||
|
'table' => 'schools.fax' ),
|
||
|
|
||
|
|
||
|
'school_address' => array(
|
||
|
'name' => 'School -- Street Address',
|
||
|
'header' => 'Address',
|
||
|
'width' => 2.0,
|
||
|
'table' => 'schools.address'),
|
||
|
|
||
|
'school_city' => array(
|
||
|
'name' => 'School -- City',
|
||
|
'header' => 'City',
|
||
|
'width' => 1.5,
|
||
|
'table' => 'schools.city' ),
|
||
|
|
||
|
'school_province' => array(
|
||
|
'name' => 'School -- '.$config['provincestate'],
|
||
|
'header' => $config['provincestate'],
|
||
|
'width' => 0.75,
|
||
|
'table' => 'schools.province' ),
|
||
|
|
||
|
'school_city_prov' => array(
|
||
|
'name' => 'School -- City, '.$config['provincestate'].' (for mailing)',
|
||
|
'header' => 'City',
|
||
|
'width' => 1.5,
|
||
|
'table' => "CONCAT(schools.city, ', ', schools.province_code)" ),
|
||
|
|
||
|
'school_postal' => array(
|
||
|
'name' => 'School -- '.$config['postalzip'],
|
||
|
'header' => $config['postalzip'],
|
||
|
'width' => 0.75,
|
||
|
'table' => 'schools.postalcode' ),
|
||
|
|
||
|
'school_principal' => array(
|
||
|
'name' => 'School -- Principal',
|
||
|
'header' => 'Principal',
|
||
|
'width' => 1.25,
|
||
|
'table' => 'schools.principal_uid',
|
||
|
'exec_function' => 'reports_students_school_principal'),
|
||
|
|
||
|
'school_board' => array(
|
||
|
'name' => 'School -- Board ID',
|
||
|
'header' => 'Board',
|
||
|
'width' => 0.75,
|
||
|
'table' => 'schools.board' ),
|
||
|
|
||
|
|
||
|
/* Ethics ===========================================================*/
|
||
|
|
||
|
'ethics_forms_required' => array(
|
||
|
'start_option_group' => 'Ethics',
|
||
|
'name' => 'Ethics -- Which forms required (Human, Animal, blank)',
|
||
|
'header' => 'Forms',
|
||
|
'width' => 1,
|
||
|
'table' => 'users.s_pid',
|
||
|
'exec_function' => 'reports_students_ethics_forms_required'),
|
||
|
|
||
|
'ethics_approved' => array(
|
||
|
'name' => 'Ethics -- If the project has ethics approval (Yes/No)',
|
||
|
'header' => 'Ethcs App?',
|
||
|
'width' => 0.8,
|
||
|
'table' => 'projects.ethics_approved',
|
||
|
'value_map' => array (0 => 'No', 1 => 'Yes')),
|
||
|
|
||
|
/* Awards ============================================================*/
|
||
|
|
||
|
'awards' => array(
|
||
|
'start_option_group' => 'Awards assigned to student (warning: duplicates student entries for multiple awards won!)',
|
||
|
'name' => 'Award -- Type + Name',
|
||
|
'header' => 'Award Name',
|
||
|
'width' => 4,
|
||
|
'table' => "CONCAT(IF(awards.type='other','Special',awards.type),' ', awards.name)",
|
||
|
'table_sort' => 'awards.name',
|
||
|
'components' => array('awards')),
|
||
|
|
||
|
'award_name' => array(
|
||
|
'name' => 'Award -- Name',
|
||
|
'header' => 'Award Name',
|
||
|
'width' => 4,
|
||
|
'scalable' => true,
|
||
|
'table' => 'awards.name',
|
||
|
'components' => array('awards')),
|
||
|
|
||
|
'award_name_and_prize_name' => array(
|
||
|
'name' => 'Award -- Name + Prize Name',
|
||
|
'header' => 'Award+Prize Name',
|
||
|
'width' => 4,
|
||
|
'scalable' => true,
|
||
|
'table' => "CONCAT(awards.name, ': ', award_prizes.name)",
|
||
|
'components' => array('awards')),
|
||
|
|
||
|
'award_include_in_script' => array(
|
||
|
'name' => 'Award -- Include in Award Ceremony',
|
||
|
'header' => 'Include',
|
||
|
'width' => .5,
|
||
|
'table' => "awards.include_in_script",
|
||
|
'value_map' => array ('0' => 'No', '1' => 'Yes')),
|
||
|
|
||
|
'order' => array(
|
||
|
'name' => 'Award -- Order',
|
||
|
'header' => 'Award Order',
|
||
|
'width' => 0.5,
|
||
|
'table' => 'awards.ord',
|
||
|
'table_sort' => 'awards.ord',
|
||
|
'components' => array('awards')),
|
||
|
|
||
|
'award_type' => array(
|
||
|
'name' => 'Award -- Type (Divisional, Special, etc.)',
|
||
|
'header' => 'Award Type',
|
||
|
'width' => 1,
|
||
|
'table' => 'awards.type',
|
||
|
'value_map' => array ('divisional' => 'Divisional', 'special' => 'Special', 'other' => 'Other', 'grand' => 'Grand'),
|
||
|
'components' => array('awards')),
|
||
|
|
||
|
'sponsor' => array(
|
||
|
'name' => 'Award -- Sponsor DB ID',
|
||
|
'header' => 'Award Sponsor',
|
||
|
'width' => 1.5,
|
||
|
'table' => 'awards.sponsors_id',
|
||
|
'table_sort' => 'awards.sponsors_id',
|
||
|
'components' => array('awards')),
|
||
|
|
||
|
'pn_awards' => array(
|
||
|
'name' => 'Award -- Project Num + Award Name (will be unique for each award)',
|
||
|
'header' => 'Award Name',
|
||
|
'width' => 4,
|
||
|
'table' => "CONCAT(projects.number,' ', awards.name)",
|
||
|
'table_sort' => 'awards.ord',
|
||
|
'components' => array('awards')),
|
||
|
|
||
|
'award_prize_name' => array(
|
||
|
'name' => 'Award -- Prize Name',
|
||
|
'header' => 'Prize Name',
|
||
|
'width' => 2,
|
||
|
'table' => 'award_prizes.name',
|
||
|
'components' => array('awards')),
|
||
|
|
||
|
'award_prize_cash' => array(
|
||
|
'name' => 'Award -- Prize Cash Amount',
|
||
|
'header' => 'Cash',
|
||
|
'width' => 0.5,
|
||
|
'table' => 'award_prizes.cash',
|
||
|
'components' => array('awards')),
|
||
|
|
||
|
'award_prize_cash_cheque' => array(
|
||
|
'name' => 'Award -- Prize Cash Amount for Cheques',
|
||
|
'header' => 'Cash',
|
||
|
'width' => 0.5,
|
||
|
'table' => 'award_prizes.cash',
|
||
|
'components' => array('awards'),
|
||
|
'exec_function' => 'report_student_cash_cheque'),
|
||
|
|
||
|
'award_prize_cash_words' => array(
|
||
|
'name' => 'Award -- Prize Cash Amount In Words',
|
||
|
'header' => 'Cash',
|
||
|
'width' => 0.5,
|
||
|
'table' => 'award_prizes.cash',
|
||
|
'components' => array('awards'),
|
||
|
'exec_function' => 'report_student_cash_words'),
|
||
|
|
||
|
'award_prize_scholarship' => array(
|
||
|
'name' => 'Award -- Prize Scholarship Amount',
|
||
|
'header' => 'Scholarship',
|
||
|
'width' => 0.75,
|
||
|
'table' => 'award_prizes.scholarship',
|
||
|
'components' => array('awards')),
|
||
|
|
||
|
'award_prize_value' => array(
|
||
|
'name' => 'Award -- Prize Value Amount',
|
||
|
'header' => 'Value',
|
||
|
'width' => 0.5,
|
||
|
'table' => 'award_prizes.value',
|
||
|
'components' => array('awards')),
|
||
|
|
||
|
'award_prize_fullname' => array(
|
||
|
'name' => 'Award -- Prize Name, Category, Challenge',
|
||
|
'header' => 'Prize Name',
|
||
|
'width' => 4,
|
||
|
'table' => "CONCAT(award_prizes.name,' in ',categories.name,' ', challenges.name)",
|
||
|
'table_sort' => 'award_prizes.order',
|
||
|
'components' => array('awards')),
|
||
|
|
||
|
'award_prize_trophy_any' => array(
|
||
|
'name' => 'Award -- Trophy (\'Yes\' if the award has a trophy)',
|
||
|
'header' => 'Trophy',
|
||
|
'width' => 0.5,
|
||
|
'table' => "IF ( FIND_IN_SET('keeper',`award_prizes`.`trophies`)>0 OR
|
||
|
FIND_IN_SET('return',`award_prizes`.`trophies`)>0 OR
|
||
|
FIND_IN_SET('school_keeper',`award_prizes`.`trophies`)>0 OR
|
||
|
FIND_IN_SET('school_return',`award_prizes`.`trophies`)>0, 'Yes','No' )" ,
|
||
|
'components' => array('awards')),
|
||
|
|
||
|
'award_prize_trophy_return' => array(
|
||
|
'name' => 'Award -- Annual Trophy (\'Yes\' if the award has a school or student trophy that isn\'t a keeper)',
|
||
|
'header' => 'Trophy',
|
||
|
'width' => 0.5,
|
||
|
'table' => "IF ( FIND_IN_SET('return',`award_prizes`.`trophies`)>0 OR FIND_IN_SET('school_return',`award_prizes`.`trophies`)>0, 'Yes','No')",
|
||
|
'components' => array('awards')),
|
||
|
|
||
|
'award_prize_trophy_return_student' => array(
|
||
|
'name' => 'Award -- Annual Student Trophy (\'Yes\' if the award has astudent trophy that isn\'t a keeper)',
|
||
|
'header' => 'Ind.',
|
||
|
'width' => 0.5,
|
||
|
'table' => "IF ( FIND_IN_SET('return',`award_prizes`.`trophies`)>0, 'Yes', 'No')",
|
||
|
'components' => array('awards')),
|
||
|
|
||
|
'award_prize_trophy_return_school' => array(
|
||
|
'name' => 'Award -- Annual School Trophy (\'Yes\' if the award has a school trophy that isn\'t a keeper)',
|
||
|
'header' => 'Sch.',
|
||
|
'width' => 0.5,
|
||
|
'table' => "IF ( FIND_IN_SET('school_return',`award_prizes`.`trophies`)>0, 'Yes', 'No')",
|
||
|
'components' => array('awards')),
|
||
|
|
||
|
'nom_awards' => array(
|
||
|
'start_option_group' => 'Nominated Awards (warning: duplicates student for multiple awards!)',
|
||
|
'name' => 'Award Nominations -- Award Name',
|
||
|
'header' => 'Award Name',
|
||
|
'width' => 4,
|
||
|
'table' => "CONCAT(awards.type,' -- ',awards.name)",
|
||
|
'table_sort' => 'awards.name',
|
||
|
'components' => array('awards_nominations')),
|
||
|
|
||
|
'nom_pn_awards' => array(
|
||
|
'name' => 'Award Nominations -- Project Num + Award Name(will be unique)',
|
||
|
'header' => 'Award Name',
|
||
|
'width' => 4,
|
||
|
'table' => "CONCAT(projects.number,' ', awards.name)",
|
||
|
'table_sort' => 'awards.name',
|
||
|
'components' => array('awards_nominations')),
|
||
|
|
||
|
'nom_awards_name_1' => array(
|
||
|
'name' => 'Award Nominations -- Self-Nominated Special Award 1',
|
||
|
'header' => 'Award Name',
|
||
|
'width' => 3,
|
||
|
'table' => 'projects.id',
|
||
|
'table_sort' => 'projects.id',
|
||
|
'exec_function' => 'reports_students_award_selfnom_1'),
|
||
|
|
||
|
'nom_awards_name_2' => array(
|
||
|
'name' => 'Award Nominations -- Self-Nominated Special Award 2',
|
||
|
'header' => 'Award Name',
|
||
|
'width' => 3,
|
||
|
'table' => 'projects.id',
|
||
|
'table_sort' => 'projects.id',
|
||
|
'exec_function' => 'reports_students_award_selfnom_2'),
|
||
|
|
||
|
'nom_awards_name_3' => array(
|
||
|
'name' => 'Award Nominations -- Self-Nominated Special Award 3',
|
||
|
'header' => 'Award Name',
|
||
|
'width' => 3,
|
||
|
'table' => 'projects.id',
|
||
|
'table_sort' => 'projects.id',
|
||
|
'exec_function' => 'reports_students_award_selfnom_3'),
|
||
|
|
||
|
'nom_awards_name_4' => array(
|
||
|
'name' => 'Award Nominations -- Self-Nominated Special Award 4',
|
||
|
'header' => 'Award Name',
|
||
|
'width' => 3,
|
||
|
'table' => 'projects.id',
|
||
|
'table_sort' => 'projects.id',
|
||
|
'exec_function' => 'reports_students_award_selfnom_4'),
|
||
|
|
||
|
'nom_awards_name_5' => array(
|
||
|
'name' => 'Award Nominations -- Self-Nominated Special Award 5',
|
||
|
'header' => 'Award Name',
|
||
|
'width' => 3,
|
||
|
'table' => 'projects.id',
|
||
|
'table_sort' => 'projects.id',
|
||
|
'exec_function' => 'reports_students_award_selfnom_5'),
|
||
|
|
||
|
|
||
|
|
||
|
/* Emergency Contact Info */
|
||
|
'emerg_name' => array(
|
||
|
'start_option_group' => 'Emergency Contact Information',
|
||
|
'name' => 'Emergency Contact -- Name',
|
||
|
'header' => 'Contact Name',
|
||
|
'width' => 1.5,
|
||
|
'table' => "CONCAT(emergency_contacts.firstname, ' ', emergency_contacts.lastname)",
|
||
|
'components' => array('emergency_contacts')),
|
||
|
|
||
|
'emerg_relation' => array(
|
||
|
'name' => 'Emergency Contact -- Relationship',
|
||
|
'header' => 'Relation',
|
||
|
'width' => 1,
|
||
|
'table' => "emergency_contacts.relation",
|
||
|
'components' => array('emergency_contacts')),
|
||
|
|
||
|
'emerg_phone' => array(
|
||
|
'name' => 'Emergency Contact -- Phone',
|
||
|
'header' => 'Emrg.Phone',
|
||
|
'width' => 1,
|
||
|
'table' => "CONCAT(emergency_contacts.phone1, ' ', emergency_contacts.phone2, ' ', emergency_contacts.phone3)",
|
||
|
'components' => array('emergency_contacts')),
|
||
|
|
||
|
'emerg_email' => array(
|
||
|
'name' => 'Emergency Contact -- Email',
|
||
|
'header' => 'Email',
|
||
|
'width' => 1,
|
||
|
'table' => "emergency_contacts.email",
|
||
|
'components' => array('emergency_contacts')),
|
||
|
|
||
|
/* Tour Information */
|
||
|
'tour_assign_name' => array(
|
||
|
'start_option_group' => 'Tour Information',
|
||
|
'name' => 'Tours -- Assigned Tour Name',
|
||
|
'header' => 'Tour',
|
||
|
'width' => 4,
|
||
|
'table' => "tours.name",
|
||
|
'components' => array('tours')),
|
||
|
|
||
|
'tour_assign_num' => array(
|
||
|
'name' => 'Tours -- Assigned Tour Number',
|
||
|
'header' => 'Tour',
|
||
|
'width' => 0.5,
|
||
|
'table' => "tours.num",
|
||
|
'components' => array('tours')),
|
||
|
|
||
|
'tour_assign_numname' => array(
|
||
|
'name' => 'Tours -- Assigned Tour Number and Name',
|
||
|
'header' => 'Tour',
|
||
|
'width' => 4,
|
||
|
'table' => "CONCAT(tours.num,': ', tours.name)",
|
||
|
'table_sort' => 'tours.num',
|
||
|
'components' => array('tours')),
|
||
|
|
||
|
/* Mentor Information */
|
||
|
'mentor_name_proj' => array(
|
||
|
'start_option_group' => 'Mentor Information',
|
||
|
'name' => 'Mentor -- Project and Name (Distinct for each Project+Mentor pair)',
|
||
|
'header' => 'Mentor Name',
|
||
|
'width' => 1.75,
|
||
|
'scalable' => true,
|
||
|
'table' => "CONCAT(projects.number, ' - ', mentors.firstname,' ', mentors.lastname)",
|
||
|
'table_sort'=> 'mentors.lastname',
|
||
|
'components' => array('mentors')),
|
||
|
|
||
|
'mentor_last_name' => array(
|
||
|
'name' => 'Mentor -- Last Name',
|
||
|
'header' => 'Last Name',
|
||
|
'width' => 1.0,
|
||
|
'table' => 'mentors.lastname',
|
||
|
'components' => array('mentors')),
|
||
|
|
||
|
'mentor_first_name' => array(
|
||
|
'name' => 'Mentor -- First Name',
|
||
|
'header' => 'First Name',
|
||
|
'width' => 1.0,
|
||
|
'table' => 'mentors.firstname',
|
||
|
'components' => array('mentors')),
|
||
|
|
||
|
'mentor_name' => array(
|
||
|
'name' => 'Mentor -- Full Name (last, first)',
|
||
|
'header' => 'Mentor Name',
|
||
|
'width' => 1.75,
|
||
|
'scalable' => true,
|
||
|
'table' => "CONCAT(mentors.lastname, ', ', mentors.firstname)",
|
||
|
'table_sort'=> 'mentors.lastname',
|
||
|
'components' => array('mentors')),
|
||
|
|
||
|
'mentor_namefl' => array(
|
||
|
'name' => 'Mentor -- Full Name (first last)',
|
||
|
'header' => 'Mentor Name',
|
||
|
'width' => 1.75,
|
||
|
'scalable' => true,
|
||
|
'table' => "CONCAT(mentors.firstname, ' ', mentors.lastname)",
|
||
|
'table_sort'=> 'mentors.lastname',
|
||
|
'components' => array('mentors')),
|
||
|
|
||
|
'mentor_email' => array(
|
||
|
'name' => 'Mentor -- Email',
|
||
|
'header' => 'Mentor Email',
|
||
|
'width' => 2.0,
|
||
|
'scalable' => true,
|
||
|
'table' => 'mentors.email',
|
||
|
'components' => array('mentors')),
|
||
|
|
||
|
'mentor_phone' => array(
|
||
|
'name' => 'Mentor -- Phone',
|
||
|
'header' => 'Mentor Phone',
|
||
|
'width' => 1,
|
||
|
'table' => 'mentors.phone',
|
||
|
'components' => array('mentors')),
|
||
|
|
||
|
'mentor_organization' => array(
|
||
|
'name' => 'Mentor -- Organization',
|
||
|
'header' => 'Mentor Org.',
|
||
|
'width' => 1.5,
|
||
|
'scalable' => true,
|
||
|
'table' => 'mentors.organization',
|
||
|
'components' => array('mentors')),
|
||
|
|
||
|
'mentor_position' => array(
|
||
|
'name' => 'Mentor -- Position',
|
||
|
'header' => 'Position',
|
||
|
'width' => 1,
|
||
|
'scalable' => true,
|
||
|
'table' => 'mentors.position',
|
||
|
'components' => array('mentors')),
|
||
|
|
||
|
'mentor_description' => array(
|
||
|
'name' => 'Mentor -- Description of Help',
|
||
|
'header' => 'Description of Help',
|
||
|
'width' => 3.0,
|
||
|
'scalable' => true,
|
||
|
'table' => 'mentors.desc',
|
||
|
'components' => array('mentors')),
|
||
|
|
||
|
/* Fair Information */
|
||
|
'feeder_fair_name' => array (
|
||
|
'start_option_group' => 'Fair Information',
|
||
|
'name' => 'Feeder Fair -- Name',
|
||
|
'header' => 'Fair Name',
|
||
|
'width' => 1.5,
|
||
|
'table' => 'fairs.name',
|
||
|
'components' => array('fairs')),
|
||
|
|
||
|
'feeder_fair_abbrv' => array (
|
||
|
'name' => 'Feeder Fair -- Abbreviation',
|
||
|
'header' => 'Fair',
|
||
|
'width' => 0.75,
|
||
|
'table' => 'fairs.abbrv',
|
||
|
'components' => array('fairs')),
|
||
|
|
||
|
'fair_year' => array (
|
||
|
'name' => 'Fair -- Year',
|
||
|
'header' => 'Year',
|
||
|
'width' => 0.5,
|
||
|
'table' => 'users.year'),
|
||
|
|
||
|
'fair_name' => array (
|
||
|
'name' => 'Fair -- Name',
|
||
|
'header' => 'Fair Name',
|
||
|
'width' => 3,
|
||
|
'table' => "'".$mysqli->real_escape_string($config['fair_name'])."'"),
|
||
|
|
||
|
'fair_logo' => array(
|
||
|
'name' => 'Fair -- Logo (for Labels only)',
|
||
|
'header' => '',
|
||
|
'width' => 1 /*mm*/,
|
||
|
'table' => "CONCAT(' ')"),
|
||
|
|
||
|
'regitem_name' => array (
|
||
|
'start_option_group' => 'Optional Reg Items',
|
||
|
'name' => 'Reg Items -- Name',
|
||
|
'header' => 'Reg Item',
|
||
|
'width' => 2.0,
|
||
|
'table' => 'regfee_items.name',
|
||
|
'components' => array('regitems')),
|
||
|
|
||
|
/* Special/Misc/Other */
|
||
|
'static_text' => array (
|
||
|
'start_option_group' => 'Special Fields',
|
||
|
'name' => 'Label -- Static Text',
|
||
|
'header' => '',
|
||
|
'width' => 0.1,
|
||
|
'table' => "CONCAT(' ')"),
|
||
|
|
||
|
'static_box' => array (
|
||
|
'name' => 'Label -- Static Box',
|
||
|
'header' => '',
|
||
|
'width' => 0.1,
|
||
|
'table' => "CONCAT(' ')"),
|
||
|
|
||
|
'easyparse_allnames' => array(
|
||
|
'name' => "Easy Parse -- All Student Names (REQUIRES MYSQL 5.0) ",
|
||
|
'header' => 'Student(s)',
|
||
|
'width' => 3.0,
|
||
|
'table' => "GROUP_CONCAT(users.lastname, ',', users.firstname ORDER BY users.lastname SEPARATOR ':')",
|
||
|
'group_by' => array('users.s_pid')),
|
||
|
|
||
|
'special_tshirt_count' => array(
|
||
|
'name' => 'Special -- T-Shirt Size Count',
|
||
|
'header' => 'Count',
|
||
|
'width' => 0.5,
|
||
|
'table' => 'COUNT(*)',
|
||
|
'total' => true,
|
||
|
'group_by' => array('users.tshirt')),
|
||
|
|
||
|
'current_date' => array(
|
||
|
'name' => 'Current Date',
|
||
|
'header' => 'Date',
|
||
|
'width' => 0.5,
|
||
|
'table' => "CONCAT(' ')",
|
||
|
'exec_function' => 'report_student_get_date_today'),
|
||
|
|
||
|
'current_date_for_cheques' => array(
|
||
|
'name' => 'Current Date for Cheques',
|
||
|
'header' => 'Date',
|
||
|
'width' => 0.5,
|
||
|
'table' => "CONCAT(' ')",
|
||
|
'exec_function' => 'report_student_get_date_today_for_cheques'),
|
||
|
|
||
|
'current_date_format_for_cheques' => array(
|
||
|
'name' => 'Current Date Format for Cheques',
|
||
|
'header' => 'Format',
|
||
|
'width' => 0.5,
|
||
|
'table' => "CONCAT(' ')",
|
||
|
'exec_function' => 'report_student_get_cheque_date_format'),
|
||
|
);
|
||
|
|
||
|
#$report_students_fields = array_merge($report_students_fields,$regfeeitems);
|
||
|
|
||
|
function report_students_fromwhere($report, $components)
|
||
|
{
|
||
|
global $config, $report_students_fields;
|
||
|
|
||
|
$fields = $report_students_fields;
|
||
|
$year = $report['year'];
|
||
|
|
||
|
$awards_join = '';
|
||
|
$awards_where = '';
|
||
|
|
||
|
if(in_array('awards', $components)) {
|
||
|
/* This requires some extra gymnastics and will duplicate
|
||
|
* students/projects if they have won multiple awards */
|
||
|
$awards_join = "LEFT JOIN winners ON winners.pid = projects.pid
|
||
|
LEFT JOIN award_prizes ON award_prizes.id = winners.award_prize_id
|
||
|
LEFT JOIN awards ON awards.id = award_prizes.award_id";
|
||
|
$awards_where = " AND winners.year='$year'";
|
||
|
}
|
||
|
|
||
|
if(in_array('awards_nominations', $components)) {
|
||
|
$awards_join = "LEFT JOIN awards ON FIND_IN_SET(awards.id, projects.sa_nom)";
|
||
|
$awards_where = " ";
|
||
|
}
|
||
|
|
||
|
$partner_join = '';
|
||
|
if(in_array('partner', $components)) {
|
||
|
$partner_join = "LEFT JOIN users AS student2
|
||
|
ON(student2.s_pid=users.s_pid
|
||
|
AND student2.uid != users.uid)";
|
||
|
}
|
||
|
|
||
|
$tour_join = '';
|
||
|
$tour_where = '';
|
||
|
if(in_array('tours', $components)) {
|
||
|
$tour_join = "LEFT JOIN tours ON tours.id=users.tour_id";
|
||
|
}
|
||
|
|
||
|
$mentor_join = '';
|
||
|
$mentor_where = '';
|
||
|
if(in_array('mentors', $components)) {
|
||
|
$mentor_join = "LEFT JOIN mentors ON
|
||
|
mentors.pid=users.s_pid";
|
||
|
$mentor_where = "";
|
||
|
}
|
||
|
|
||
|
$fairs_join = '';
|
||
|
if(in_array('fairs', $components)) {
|
||
|
$fairs_join = "LEFT JOIN fairs ON fairs.id=users.fair_id";
|
||
|
}
|
||
|
|
||
|
$regitems_join = '';
|
||
|
if(in_array('regitems', $components)) {
|
||
|
$regitems_join = "LEFT JOIN regfee_items_link ON regfee_items_link.students_id=users.id
|
||
|
LEFT JOIN regfee_items ON regfee_items.id=regfee_items_link.regfee_items_id";
|
||
|
}
|
||
|
|
||
|
$emerg_join = '';
|
||
|
if(in_array('emergency_contacts', $components)) {
|
||
|
$emerg_join = "LEFT JOIN emergency_contacts ON emergency_contacts.uid=users.uid";
|
||
|
}
|
||
|
|
||
|
|
||
|
switch($report['include_registrations']) {
|
||
|
case 'complete':
|
||
|
$reg_where = "AND users.s_accepted='1'";
|
||
|
break;
|
||
|
case 'almost':
|
||
|
$reg_where = "AND ( users.s_accepted='1' OR users.s_complete='1')";
|
||
|
break;
|
||
|
default:
|
||
|
$reg_where = '';
|
||
|
}
|
||
|
|
||
|
$q = " FROM users
|
||
|
LEFT JOIN schools ON schools.id=users.schools_id
|
||
|
LEFT JOIN projects ON projects.pid=users.s_pid
|
||
|
LEFT JOIN challenges ON challenges.chal_id=projects.challenge_id
|
||
|
LEFT JOIN categories ON categories.cat_id=projects.cat_id
|
||
|
$partner_join
|
||
|
$mentor_join
|
||
|
$awards_join
|
||
|
$fairs_join
|
||
|
$tour_join
|
||
|
$emerg_join
|
||
|
WHERE
|
||
|
FIND_IN_SET('student',`users`.`roles`)>0
|
||
|
AND users.year='$year'
|
||
|
AND projects.year='$year'
|
||
|
AND categories.year='$year'
|
||
|
AND challenges.year='$year'
|
||
|
$mentor_where
|
||
|
$awards_where
|
||
|
$reg_where
|
||
|
";
|
||
|
|
||
|
return $q;
|
||
|
}
|
||
|
|
||
|
?>
|