Subversion Repositories eFlore/Applications.cel

Rev

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

Rev 1605 Rev 3473
Line 383... Line 383...
383
    * @param mixed   &$url_format  The default format for hyperlinks
383
    * @param mixed   &$url_format  The default format for hyperlinks
384
    * @param mixed   &$parser      The formula parser created for the Workbook
384
    * @param mixed   &$parser      The formula parser created for the Workbook
385
    * @param string  $tmp_dir      The path to the directory for temporary files
385
    * @param string  $tmp_dir      The path to the directory for temporary files
386
    * @access private
386
    * @access private
387
    */
387
    */
388
    function Spreadsheet_Excel_Writer_Worksheet($BIFF_version, $name,
388
    function __construct($BIFF_version, $name,
389
                                                $index, &$activesheet,
389
                                                $index, &$activesheet,
390
                                                &$firstsheet, &$str_total,
390
                                                &$firstsheet, &$str_total,
391
                                                &$str_unique, &$str_table,
391
                                                &$str_unique, &$str_table,
392
                                                &$url_format, &$parser,
392
                                                &$url_format, &$parser,
393
                                                $tmp_dir)
393
                                                $tmp_dir)
394
    {
394
    {
395
        // It needs to call its parent's constructor explicitly
395
        // It needs to call its parent's constructor explicitly
396
        $this->Spreadsheet_Excel_Writer_BIFFwriter();
396
        parent::__construct();
397
        $this->_BIFF_version   = $BIFF_version;
397
        $this->_BIFF_version   = $BIFF_version;
398
        $rowmax                = 65536; // 16384 in Excel 5
398
        $rowmax                = 65536; // 16384 in Excel 5
399
        $colmax                = 256;
399
        $colmax                = 256;
Line 400... Line 400...
400
 
400