Subversion Repositories eFlore/Applications.cel

Rev

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

Rev 2552 Rev 3473
Line 169... Line 169...
169
    * Class constructor
169
    * Class constructor
170
    *
170
    *
171
    * @param string filename for storing the workbook. "-" for writing to stdout.
171
    * @param string filename for storing the workbook. "-" for writing to stdout.
172
    * @access public
172
    * @access public
173
    */
173
    */
174
    function Spreadsheet_Excel_Writer_Workbook($filename)
174
    function __construct($filename)
175
    {
175
    {
176
        // It needs to call its parent's constructor explicitly
176
        // It needs to call its parent's constructor explicitly
177
        $this->Spreadsheet_Excel_Writer_BIFFwriter();
177
        parent::__construct();
Line 178... Line 178...
178
 
178
 
179
        $this->_filename         = $filename;
179
        $this->_filename         = $filename;
180
        $this->_parser           = new Spreadsheet_Excel_Writer_Parser($this->_byte_order, $this->_BIFF_version);
180
        $this->_parser           = new Spreadsheet_Excel_Writer_Parser($this->_byte_order, $this->_BIFF_version);
181
        $this->_1904             = 0;
181
        $this->_1904             = 0;