42 '\x{1FFFE}-\x{1FFFF}',
43 '\x{2FFFE}-\x{2FFFF}',
44 '\x{3FFFE}-\x{3FFFF}',
45 '\x{4FFFE}-\x{4FFFF}',
46 '\x{5FFFE}-\x{5FFFF}',
47 '\x{6FFFE}-\x{6FFFF}',
48 '\x{7FFFE}-\x{7FFFF}',
49 '\x{8FFFE}-\x{8FFFF}',
50 '\x{9FFFE}-\x{9FFFF}',
51 '\x{AFFFE}-\x{AFFFF}',
52 '\x{BFFFE}-\x{BFFFF}',
53 '\x{CFFFE}-\x{CFFFF}',
54 '\x{DFFFE}-\x{DFFFF}',
55 '\x{EFFFE}-\x{EFFFF}',
56 '\x{FFFFE}-\x{FFFFF}',
57 '\x{10FFFE}-\x{10FFFF}',
72 $this->
lng = $DIC->language();
74 $this->workbook =
new Spreadsheet();
75 $this->workbook->removeSheetByIndex(0);
87 $this->workbook = IOFactory::load($filename);
99 return array(self::FORMAT_XML, self::FORMAT_BIFF);
108 $this->format = $a_format;
124 bool $a_activate =
true 128 $invalid = array(
'*',
':',
'/',
'\\',
'?',
'[',
']',
'\'-
','\
'');
130 $a_name = str_replace($invalid,
"", $a_name);
136 $sheet =
new Worksheet($this->workbook, $a_name);
137 $this->workbook->addSheet($sheet);
138 $new_index = $this->workbook->getSheetCount() - 1;
152 $this->workbook->setActiveSheetIndex($a_index);
161 return $this->workbook->getSheetCount();
170 return $this->workbook->getActiveSheet()->getTitle();
186 if (is_bool($a_value)) {
194 if (is_string($a_value)) {
195 if (!mb_check_encoding($a_value,
'UTF-8')) {
211 case $a_value instanceof
ilDate:
227 return $a_value ? $lng->
txt(
'yes') : $lng->
txt(
'no');
245 if ($a_value instanceof
ilDate) {
246 $a_cell->getStyle()->getNumberFormat()->setFormatCode(
"dd.mm.yyyy");
248 $a_cell->getStyle()->getNumberFormat()->setFormatCode(
"dd.mm.yyyy hh:mm:ss");
260 $wb = $this->workbook->getActiveSheet()->setCellValue(
264 $cell = $wb->getCell($a_coords);
266 } elseif (is_numeric($a_value)) {
267 $this->workbook->getActiveSheet()->setCellValueExplicit(
270 DataType::TYPE_NUMERIC
273 $this->workbook->getActiveSheet()->setCellValueExplicit(
276 DataType::TYPE_STRING
292 ?
string $a_datatype = null
296 if (!is_null($a_datatype)) {
297 $this->workbook->getActiveSheet()->setCellValueExplicitByColumnAndRow(
304 $wb = $this->workbook->getActiveSheet()->setCellValueByColumnAndRow(
309 $this->
setDateFormat($wb->getCellByColumnAndRow($col, $a_row), $a_value);
310 } elseif (is_numeric($a_value)) {
311 $wb = $this->workbook->getActiveSheet()->setCellValueExplicitByColumnAndRow(
315 DataType::TYPE_NUMERIC
318 $wb = $this->workbook->getActiveSheet()->setCellValueExplicitByColumnAndRow(
322 DataType::TYPE_STRING
336 string $a_top_left =
"A1",
339 foreach ($a_values as $row_idx =>
$cols) {
340 if (is_array(
$cols)) {
341 foreach (
$cols as $col_idx => $col_value) {
342 $a_values[$row_idx][$col_idx] = $this->
prepareValue($col_value);
349 $this->workbook->getActiveSheet()->fromArray($a_values, $a_null_value, $a_top_left);
362 return $this->workbook->getActiveSheet()->getCellByColumnAndRow($col, $a_row)->getValue();
370 return $this->workbook->getActiveSheet()->toArray();
378 return Coordinate::columnIndexFromString($this->workbook->getActiveSheet()->getHighestDataColumn());
387 return Coordinate::stringFromColumnIndex($col);
396 foreach ($this->workbook->getWorksheetIterator() as $worksheet) {
397 $this->workbook->setActiveSheetIndex($this->workbook->getIndex($worksheet));
398 $sheet = $this->workbook->getActiveSheet();
399 $cellIterator = $sheet->getRowIterator()->current()->getCellIterator();
400 $cellIterator->setIterateOnlyExistingCells(
true);
401 foreach ($cellIterator as $cell) {
402 $sheet->getColumnDimension($cell->getColumn())->setAutoSize(
true);
417 $this->workbook->setActiveSheetIndex(0);
419 switch ($this->format) {
420 case self::FORMAT_BIFF:
421 if (!stristr($a_file_name,
".xls")) {
422 $a_file_name .=
".xls";
426 case self::FORMAT_XML:
427 if (!stristr($a_file_name,
".xlsx")) {
428 $a_file_name .=
".xlsx";
443 switch ($this->format) {
444 case self::FORMAT_BIFF:
445 $a_mime_type = MimeType::APPLICATION__VND_MS_EXCEL;
448 case self::FORMAT_XML:
449 $a_mime_type = MimeType::APPLICATION__VND_OPENXMLFORMATS_OFFICEDOCUMENT_SPREADSHEETML_SHEET;
452 $a_mime_type = MimeType::APPLICATION__OCTET_STREAM;
457 $writer = IOFactory::createWriter($this->workbook, $this->format);
458 $writer->save($tmp_name);
472 $writer = IOFactory::createWriter($this->workbook, $this->format);
473 $writer->save($a_file);
481 $writer = IOFactory::createWriter($this->workbook, $this->format);
491 public function setBold(
string $a_coords): void
493 $this->workbook->getActiveSheet()->getStyle($a_coords)->getFont()->setBold(
true);
501 string $a_background,
502 string $a_font = null
506 'fillType' => Fill::FILL_SOLID,
507 'color' => array(
'rgb' => $a_background)
512 $opts[
'font'] = array(
513 'color' => array(
'rgb' => $a_font)
517 $this->workbook->getActiveSheet()->getStyle($a_coords)->applyFromArray($opts);
526 bool $a_right =
false,
527 bool $a_bottom =
false,
530 $style = $this->workbook->getActiveSheet()->getStyle($a_coords);
534 $style->getBorders()->getTop()->setBorderStyle(Border::BORDER_THIN);
537 $style->getBorders()->getRight()->setBorderStyle(Border::BORDER_THIN);
540 $style->getBorders()->getBottom()->setBorderStyle(Border::BORDER_THIN);
543 $style->getBorders()->getLeft()->setBorderStyle(Border::BORDER_THIN);
555 $columnLetter = Coordinate::stringFromColumnIndex($col);
557 return $columnLetter . $pRow;
569 $this->workbook->getActiveSheet()->getCellByColumnAndRow($column, $a_row)->getHyperlink()->setUrl($a_path);
587 $this->workbook->getActiveSheet()->mergeCells($coordinatesRange);
592 return mb_ereg_replace(
'[' . implode(
'', $this->noncharacters) .
']',
'', $string);
get(int $a_format, string $a_format_str='', string $a_tz='')
get formatted date
prepareBooleanValue(bool $a_value)
prepareStorage(string $a_file_name)
Prepare workbook for storage/delivery.
getSheetAsArray()
Returns the active sheet as an array.
txt(string $a_topic, string $a_default_lang_fallback_mod="")
gets the text for a given topic if the topic is not in the list, the topic itself with "-" will be re...
setCellArray(array $a_values, string $a_top_left="A1", $a_null_value=null)
Set cell values from array.
setDateFormat(Cell $a_cell, $a_value)
Set date format of cell.
getColumnCoord(int $a_col)
Get column "name" from number.
This file is part of ILIAS, a powerful learning management system published by ILIAS open source e-Le...
setBorders(string $a_coords, bool $a_top, bool $a_right=false, bool $a_bottom=false, bool $a_left=false)
Toggle cell(s) borders.
getColumnCount()
Returns the number of columns the sheet contains.
addLink(int $a_row, int $a_column, string $a_path)
setCell(int $a_row, int $a_col, $a_value, ?string $a_datatype=null)
Set cell value.
cleanupNonCharachters(string $string)
setFormat(string $a_format)
Set file format.
setGlobalAutoSize()
Set all existing columns on all sheets to autosize.
setBold(string $a_coords)
Set cell(s) to bold.
getValidFormats()
Get valid file formats.
static deliverFileAttached(string $path_to_file, ?string $download_file_name=null, ?string $mime_type=null, bool $delete_file=false)
getSheetTitle()
Return the current sheet title.
getCoordByColumnAndRow(int $pColumn=1, int $pRow=1)
Get cell coordinate (e.g.
This file is part of ILIAS, a powerful learning management system published by ILIAS open source e-Le...
getSheetCount()
Returns number of sheets.
writeToFile(string $a_file)
Save workbook to file.
addSheet(string $a_name, bool $a_activate=true)
Add sheet.
getCell(int $a_row, int $a_col)
Returns the value of a cell.
This file is part of ILIAS, a powerful learning management system published by ILIAS open source e-Le...
setCellByCoordinates($a_coords, $a_value)
Set cell value by coordinates.
columnIndexAdjustment(int $column)
Adjustment needed because of migration PHPExcel to PhpSpreadsheet.
static ilTempnam(?string $a_temp_path=null)
Returns a unique and non existing Path for e temporary file or directory.
mergeCells(string $coordinatesRange)
prepareDateValue(ilDateTime $a_value)
setActiveSheet(int $a_index)
static shortenTextExtended(string $a_str, int $a_len, bool $a_dots=false, bool $a_next_blank=false, bool $a_keep_extension=false)
loadFromFile(string $filename)
Loads a spreadsheet from file.
prepareString(string $a_value)
setColors(string $a_coords, string $a_background, string $a_font=null)
Set cell(s) colors.
sendToClient(string $a_file_name)
Send workbook to client.
prepareValue($a_value)
Prepare value for cell.