2007-03-20 06:24:18 +00:00
|
|
|
<?
|
|
|
|
/*
|
|
|
|
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.
|
|
|
|
*/
|
|
|
|
|
|
|
|
$report_committees_fields = array(
|
|
|
|
'name' => array(
|
|
|
|
'name' => 'Committee -- Full Name ',
|
|
|
|
'header' => 'Name',
|
|
|
|
'width' => 1.75,
|
2007-11-18 23:20:00 +00:00
|
|
|
'table' => "CONCAT(users.firstname, ' ', users.lastname)"),
|
2007-03-20 06:24:18 +00:00
|
|
|
|
|
|
|
'email' => array(
|
|
|
|
'name' => 'Committee -- Email',
|
|
|
|
'header' => 'Email',
|
|
|
|
'width' => 2.0,
|
2007-11-17 21:59:59 +00:00
|
|
|
'table' => 'users.email'),
|
2007-03-20 06:24:18 +00:00
|
|
|
|
|
|
|
'phone_home' => array(
|
|
|
|
'name' => 'Committees -- Phone (Home)',
|
|
|
|
'header' => 'Phone(Home)',
|
|
|
|
'width' => 1,
|
2007-11-17 21:59:59 +00:00
|
|
|
'table' => 'users.phonehome'),
|
2007-03-20 06:24:18 +00:00
|
|
|
|
|
|
|
'phone_work' => array(
|
|
|
|
'name' => 'Committees -- Phone (Work)',
|
|
|
|
'header' => 'Phone(Work)',
|
|
|
|
'width' => 1.25,
|
2007-11-17 21:59:59 +00:00
|
|
|
'table' => 'users.phonework'),
|
2007-03-20 06:24:18 +00:00
|
|
|
|
|
|
|
'phone_cel' => array(
|
|
|
|
'name' => 'Committees -- Phone (Cel)',
|
|
|
|
'header' => 'Phone(Cel)',
|
|
|
|
'width' => 1,
|
2007-11-17 21:59:59 +00:00
|
|
|
'table' => 'users.phonecell'),
|
2007-03-20 06:24:18 +00:00
|
|
|
|
|
|
|
'organization' => array(
|
|
|
|
'name' => 'Committees -- Organization',
|
|
|
|
'header' => 'Organization',
|
|
|
|
'width' => 2,
|
2007-11-17 21:59:59 +00:00
|
|
|
'table' => 'users.organization'),
|
2007-03-20 06:24:18 +00:00
|
|
|
|
|
|
|
'static_text' => array(
|
|
|
|
'name' => 'Static Text (useful for labels)',
|
|
|
|
'header' => '',
|
|
|
|
'width' => 0.1,
|
|
|
|
'table' => "CONCAT(' ')"),
|
|
|
|
);
|
|
|
|
|
2007-03-26 01:54:18 +00:00
|
|
|
function report_committees_fromwhere($report, $components)
|
2007-03-20 06:24:18 +00:00
|
|
|
{
|
|
|
|
global $config, $report_committees_fields;
|
|
|
|
|
|
|
|
$fields = $report_committees_fields;
|
|
|
|
$year = $report['year'];
|
|
|
|
|
|
|
|
/*
|
|
|
|
$teams_from = '';
|
|
|
|
$teams_where = '';
|
|
|
|
if(in_array('teams', $components)) {
|
|
|
|
$teams_from = ",committees_teams_link, committees_teams";
|
2007-11-17 21:59:59 +00:00
|
|
|
$teams_where = "AND committees_teams_link.committees_id=users.id
|
2007-03-20 06:24:18 +00:00
|
|
|
AND committees_teams_link.year='$year'
|
|
|
|
AND committees_teams.id=committees_teams_link.committees_teams_id
|
|
|
|
AND committees_teams.year='$year'";
|
|
|
|
}
|
|
|
|
*/
|
|
|
|
$q = " FROM
|
2007-11-17 21:59:59 +00:00
|
|
|
users
|
2007-03-20 06:24:18 +00:00
|
|
|
WHERE
|
|
|
|
1
|
|
|
|
";
|
|
|
|
|
|
|
|
return $q;
|
|
|
|
}
|
|
|
|
|
|
|
|
?>
|