Subversion Repositories eFlore/Applications.cel

Rev

Rev 1604 | Show entire file | Ignore whitespace | Details | Blame | Last modification | View Log | RSS feed

Rev 1604 Rev 3473
Line 48... Line 48...
48
    * The constructor. It just creates a Workbook
48
    * The constructor. It just creates a Workbook
49
    *
49
    *
50
    * @param string $filename The optional filename for the Workbook.
50
    * @param string $filename The optional filename for the Workbook.
51
    * @return Spreadsheet_Excel_Writer_Workbook The Workbook created
51
    * @return Spreadsheet_Excel_Writer_Workbook The Workbook created
52
    */
52
    */
53
    function Spreadsheet_Excel_Writer($filename = '')
53
    function __construct($filename = '')
54
    {
54
    {
55
        $this->_filename = $filename;
55
        $this->_filename = $filename;
56
        $this->Spreadsheet_Excel_Writer_Workbook($filename);
56
        parent::__construct($filename);
57
    }
57
    }
Line 58... Line 58...
58
 
58
 
59
    /**
59
    /**
60
    * Send HTTP headers for the Excel file.
60
    * Send HTTP headers for the Excel file.