19 declare(strict_types=1);
32 if ($this->
getField()->isMulti() && !is_array($this->value)) {
35 if (!$this->
getField()->isMulti() && is_array($this->value)) {
36 return (count($this->value) == 1) ? array_shift($this->value) :
'';
49 return implode(
"; ", $values);
54 $string = (string) parent::getValueFromExcel($excel, $row, $col);
58 $has_value = count($string);
60 $string = $this->getValueFromString($string);
64 if (!$has_value && $old) {
68 return [
'warning' => $warning];
84 $delimiter = strpos($stringValues,
'; ') ?
'; ' :
', ';
85 $slicedStrings = explode($delimiter, $stringValues);
86 $slicedReferences = [];
88 for ($i = 0; $i < count($slicedStrings); $i++) {
91 $searchString = implode(array_slice($slicedStrings, $resolved, $i - $resolved + 1));
92 if ($ref = $this->getValueFromString($searchString)) {
93 $slicedReferences[] = $ref;
100 $searchString = $slicedStrings[$i];
101 if ($ref = $this->getValueFromString($searchString)) {
102 $slicedReferences[] = $ref;
107 return $slicedReferences;
110 protected function getValueFromString(
string $string): ?
int 112 $options = $this->
getField()->getProperty(static::PROP_SELECTION_OPTIONS);
113 foreach ($options as $opt) {
115 if ($opt->getValue() == $string) {
116 return $opt->getOptId();
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)
const PROP_SELECTION_TYPE
const PROP_SELECTION_OPTIONS
static getExcelCharForInteger(int $int)