74 lines
2.3 KiB
PHP
74 lines
2.3 KiB
PHP
<?php
|
|
/*
|
|
* Module written/ported by Xavier Noguer <xnoguer@rezebra.com>
|
|
*
|
|
* PERL Spreadsheet::WriteExcel module.
|
|
*
|
|
* The author of the Spreadsheet::WriteExcel module is John McNamara
|
|
* <jmcnamara@cpan.org>
|
|
*
|
|
* I _DO_ maintain this code, and John McNamara has nothing to do with the
|
|
* porting of this code to PHP. Any questions directly related to this
|
|
* class library should be directed to me.
|
|
*
|
|
* License Information:
|
|
*
|
|
* Spreadsheet_Excel_Writer: A library for generating Excel Spreadsheets
|
|
* Copyright (c) 2002-2003 Xavier Noguer xnoguer@rezebra.com
|
|
*
|
|
* This library is free software; you can redistribute it and/or
|
|
* modify it under the terms of the GNU Lesser General Public
|
|
* License as published by the Free Software Foundation; either
|
|
* version 2.1 of the License, or (at your option) any later version.
|
|
*
|
|
* This library 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
|
|
* Lesser General Public License for more details.
|
|
*
|
|
* You should have received a copy of the GNU Lesser General Public
|
|
* License along with this library; if not, write to the Free Software
|
|
* Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
|
|
*/
|
|
|
|
require_once('PEAR.php');
|
|
require_once('Spreadsheet/Excel/Writer/Workbook.php');
|
|
|
|
/**
|
|
* Class for writing Excel Spreadsheets. This class should change COMPLETELY.
|
|
*
|
|
* @author Xavier Noguer <xnoguer@rezebra.com>
|
|
* @package Spreadsheet_Excel_Writer
|
|
*/
|
|
|
|
class Spreadsheet_Excel_Writer extends Workbook
|
|
{
|
|
/**
|
|
* The constructor. It just creates a Workbook
|
|
*
|
|
* @param string $filename The optional filename for the Workbook.
|
|
* @return object The Workbook created
|
|
*/
|
|
function Spreadsheet_Excel_Writer($filename = '')
|
|
{
|
|
$this->_filename = $filename;
|
|
$this->Workbook($filename);
|
|
}
|
|
|
|
/**
|
|
* Send HTTP headers for the Excel file.
|
|
*
|
|
* @access public
|
|
*/
|
|
function send($filename)
|
|
{
|
|
header("Content-type: application/vnd.ms-excel");
|
|
header("Content-Disposition: attachment; filename=$filename");
|
|
header("Expires: 0");
|
|
header("Cache-Control: must-revalidate, post-check=0,pre-check=0");
|
|
header("Pragma: public");
|
|
}
|
|
|
|
}
|
|
?>
|