ILIAS  trunk Revision v11.0_alpha-1689-g66c127b4ae8
All Data Structures Namespaces Files Functions Variables Enumerations Enumerator Modules Pages
class.ilDclSelectionRecordFieldModel.php
Go to the documentation of this file.
1 <?php
2 
19 declare(strict_types=1);
20 
22 {
23  // those should be overwritten by subclasses
24  public const PROP_SELECTION_TYPE = '';
25  public const PROP_SELECTION_OPTIONS = '';
26 
30  public function getValue()
31  {
32  if ($this->getField()->isMulti() && !is_array($this->value)) {
33  return [$this->value];
34  }
35  if (!$this->getField()->isMulti() && is_array($this->value)) {
36  return (count($this->value) == 1) ? array_shift($this->value) : '';
37  }
38 
39  return $this->value;
40  }
41 
45  public function parseExportValue($value): string
46  {
47  $values = ilDclSelectionOption::getValues((int) $this->getField()->getId(), $value);
48 
49  return implode("; ", $values);
50  }
51 
52  public function getValueFromExcel(ilExcel $excel, int $row, int $col)
53  {
54  $string = (string) parent::getValueFromExcel($excel, $row, $col);
55  $old = $string;
56  if ($this->getField()->isMulti()) {
57  $string = $this->getMultipleValuesFromString($string);
58  $has_value = count($string);
59  } else {
60  $string = $this->getValueFromString($string);
61  $has_value = $string;
62  }
63 
64  if (!$has_value && $old) {
65  $warning = "(" . $row . ", " . ilDataCollectionImporter::getExcelCharForInteger($col + 1) . ") " . $this->lng->txt("dcl_no_such_reference") . " "
66  . $old;
67 
68  return ['warning' => $warning];
69  }
70 
71  return $string;
72  }
73 
82  protected function getMultipleValuesFromString(string $stringValues): array
83  {
84  $delimiter = strpos($stringValues, '; ') ? '; ' : ', ';
85  $slicedStrings = explode($delimiter, $stringValues);
86  $slicedReferences = [];
87  $resolved = 0;
88  for ($i = 0; $i < count($slicedStrings); $i++) {
89  //try to find a reference since the last resolved value separated by a comma.
90  // $i = 1; $resolved = 0; $string = "hello, world, gaga" -> try to match "hello, world".
91  $searchString = implode(array_slice($slicedStrings, $resolved, $i - $resolved + 1));
92  if ($ref = $this->getValueFromString($searchString)) {
93  $slicedReferences[] = $ref;
94  $resolved = $i;
95  continue;
96  }
97 
98  //try to find a reference with the current index.
99  // $i = 1; $resolved = 0; $string = "hello, world, gaga" -> try to match "world".
100  $searchString = $slicedStrings[$i];
101  if ($ref = $this->getValueFromString($searchString)) {
102  $slicedReferences[] = $ref;
103  $resolved = $i;
104  }
105  }
106 
107  return $slicedReferences;
108  }
109 
110  protected function getValueFromString(string $string): ?int
111  {
112  $options = $this->getField()->getProperty(static::PROP_SELECTION_OPTIONS);
113  foreach ($options as $opt) {
115  if ($opt->getValue() == $string) {
116  return $opt->getOptId();
117  }
118  }
119 
120  return null;
121  }
122 }
static getValues(int $field_id, $opt_ids)
getMultipleValuesFromString(string $stringValues)
Copied from reference field and slightly adjusted.
while($session_entry=$r->fetchRow(ilDBConstants::FETCHMODE_ASSOC)) return null
getValueFromExcel(ilExcel $excel, int $row, int $col)