ILIAS  trunk Revision v11.0_alpha-1689-g66c127b4ae8
All Data Structures Namespaces Files Functions Variables Enumerations Enumerator Modules Pages
class.ilDclTextSelectionRecordFieldModel.php
Go to the documentation of this file.
1 <?php
2 
19 declare(strict_types=1);
20 
22 
24 {
25  public const PROP_SELECTION_TYPE = 'text_selection_type';
26  public const PROP_SELECTION_OPTIONS = 'text_selection_options';
27 
31  public function fillExcelExport(ilExcel $worksheet, int &$row, int &$col): void
32  {
33  $worksheet->setCell($row, $col, $this->getExportValue(), DataType::TYPE_STRING);
34  $col++;
35  }
36 }
setCell(int $a_row, int $col, $value, ?string $datatype=null, bool $disable_strip_tags_for_strings=false)
Set cell value.
fillExcelExport(ilExcel $worksheet, int &$row, int &$col)