4 include_once
'Services/Excel/classes/class.ilExcelWriterWrapper.php';
32 $this->workbook->send($a_filename);
39 if(strlen($tmp = ini_get(
'upload_tmp_dir')))
41 $this->workbook->setTempDir($tmp);
45 $this->workbook->setVersion(8);
67 return $this->format_title;
71 return $this->format_date;
75 return $this->format_day_time;
81 $this->format_bold =& $this->workbook->addFormat();
82 $this->format_bold->setBold();
86 $this->format_header =& $this->workbook->addFormat();
87 $this->format_header->setBold();
88 $this->format_header->setTop(100);
89 $this->format_header->setColor(
'black');
90 $this->format_header->setPattern(1);
91 $this->format_header->setFgColor(
'silver');
95 $this->format_title =& $this->workbook->addFormat();
96 $this->format_title->setBold();
97 $this->format_title->setColor(
'black');
98 $this->format_title->setPattern(1);
99 $this->format_title->setSize(16);
100 $this->format_title->setAlign(
'center');
104 $this->format_date =& $this->workbook->addFormat();
105 $this->format_date->setNumFormat(
"YYYY-MM-DD hh:mm:ss");
110 $this->format_day_time =& $this->workbook->addFormat();
111 $this->format_day_time->setNumFormat(
"DD:hh:mm:ss");