forked from science-ation/science-ation
44f40885e5
Add judging teams list and judging teams view reports Fix judges team number assignments to assign new teams the next available number, filling empty/missing numbers.
124 lines
2.6 KiB
PHP
124 lines
2.6 KiB
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.
|
|
*/
|
|
?>
|
|
<?
|
|
class lcsv
|
|
{
|
|
var $csvdata;
|
|
var $str_separator;
|
|
var $str_newline;
|
|
|
|
function separator()
|
|
{
|
|
return $this->str_separator;
|
|
}
|
|
function setSeparator($s)
|
|
{
|
|
$this->str_separator=$s;
|
|
}
|
|
|
|
|
|
function newline()
|
|
{
|
|
return $this->str_newline;
|
|
}
|
|
function setNewline($s)
|
|
{
|
|
$this->str_newline=$s;
|
|
}
|
|
|
|
function addTable($table)
|
|
{
|
|
if($table['header'])
|
|
{
|
|
$table_cols=count($table['header']);
|
|
for($c=0;$c<$table_cols;$c++)
|
|
{
|
|
$head=$table['header'][$c];
|
|
$this->csvdata.="\"".$head."\"";
|
|
if($c<$table_cols-1)
|
|
$this->csvdata.=$this->separator();
|
|
}
|
|
$this->csvdata.=$this->newline();
|
|
}
|
|
else
|
|
{
|
|
//is this right ?
|
|
$table_cols=count($table['data'][0]);
|
|
}
|
|
|
|
//now do the data in the table
|
|
if($table['data'])
|
|
{
|
|
foreach($table['data'] AS $dataline)
|
|
{
|
|
for($c=0;$c<$table_cols;$c++)
|
|
{
|
|
//if the data contains the separator, we need to puti the data inside ""'s
|
|
if(strstr($dataline[$c],$this->separator()))
|
|
$this->csvdata.="\"".$dataline[$c]."\"";
|
|
else
|
|
$this->csvdata.=$dataline[$c];
|
|
|
|
if($c<$table_cols-1)
|
|
$this->csvdata.=$this->separator();
|
|
}
|
|
$this->csvdata.=$this->newline();
|
|
}
|
|
}
|
|
}
|
|
|
|
function heading($str)
|
|
{
|
|
$this->csvdata.=$str;
|
|
$this->csvdata.=$this->newline();
|
|
}
|
|
|
|
function nextline()
|
|
{
|
|
$this->csvdata.=$this->newline();
|
|
|
|
}
|
|
|
|
|
|
function output()
|
|
{
|
|
if($this->csvdata)
|
|
{
|
|
//header("Content-type: application/csv");
|
|
header("Content-type: text/x-csv");
|
|
header("Content-disposition: inline; filename=sfiab_".$this->page_subtitle.".csv");
|
|
header("Content-length: ".strlen($this->csvdata));
|
|
echo $this->csvdata;
|
|
}
|
|
}
|
|
|
|
function lcsv($subtitle,$sep=",",$nl="\r\n")
|
|
{
|
|
$this->page_subtitle=$subtitle;
|
|
$this->setSeparator($sep);
|
|
$this->setNewline($nl);
|
|
|
|
}
|
|
}
|