ILIAS  trunk Revision v11.0_alpha-1689-g66c127b4ae8
All Data Structures Namespaces Files Functions Variables Enumerations Enumerator Modules Pages
class.ilDclDateSelectionRecordFieldModel.php
Go to the documentation of this file.
1 <?php
2 
19 declare(strict_types=1);
20 
22 {
23  public const PROP_SELECTION_TYPE = 'date_selection_type';
24  public const PROP_SELECTION_OPTIONS = 'date_selection_options';
25 
26  public function parseExportValue($value): string
27  {
28  $dates = [];
29  foreach (ilDclSelectionOption::getValues((int) $this->getField()->getId(), $value) as $value) {
30  $date = new ilDate($value, IL_CAL_DATE);
31  $dates[] = $date->get(IL_CAL_DATE);
32  }
33  return implode("; ", $dates);
34  }
35 }
static getValues(int $field_id, $opt_ids)
const IL_CAL_DATE