Skip to content
Snippets Groups Projects
Commit febe4cb8 authored by Oliver Bartsch's avatar Oliver Bartsch Committed by Benni Mack
Browse files

[BUGFIX] Fix PHP 8 warnings in FinisherOptionGenerator

This fixes an array to string conversion and an undefined
array key warning in EXT:form FinisherOptionGenerator.

Resolves: #94686
Releases: master
Change-Id: Ic6265c36ac0f53d70d85baabf9d1881263027207
Reviewed-on: https://review.typo3.org/c/Packages/TYPO3.CMS/+/70179


Tested-by: default avatarcore-ci <typo3@b13.com>
Tested-by: default avatarJochen <rothjochen@gmail.com>
Tested-by: default avatarBenni Mack <benni@typo3.org>
Reviewed-by: default avatarJochen <rothjochen@gmail.com>
Reviewed-by: default avatarBenni Mack <benni@typo3.org>
parent a1f22a42
Branches
Tags
No related merge requests found
...@@ -72,17 +72,21 @@ class FinisherOptionGenerator extends AbstractProcessor ...@@ -72,17 +72,21 @@ class FinisherOptionGenerator extends AbstractProcessor
} catch (MissingArrayPathException $exception) { } catch (MissingArrayPathException $exception) {
} }
if (isset($elementConfiguration['config'])) {
$elementConfiguration['config']['default'] = $optionValue;
}
$languageService = $this->getLanguageService(); $languageService = $this->getLanguageService();
$elementConfiguration['label'] = (string)($elementConfiguration['label'] ?? '');
if (empty($optionValue)) { if (empty($optionValue)) {
$elementConfiguration['label'] .= sprintf(' (%s: "%s")', $languageService->getLL('default'), $languageService->getLL('empty')); $elementConfiguration['label'] .= sprintf(' (%s: "%s")', $languageService->getLL('default'), $languageService->getLL('empty'));
} else { } else {
if (is_array($optionValue)) {
$optionValue = implode(',', $optionValue);
}
$elementConfiguration['label'] .= sprintf(' (%s: "' . $optionValue . '")', $languageService->getLL('default')); $elementConfiguration['label'] .= sprintf(' (%s: "' . $optionValue . '")', $languageService->getLL('default'));
} }
if (isset($elementConfiguration['config'])) {
$elementConfiguration['config']['default'] = $optionValue;
}
$sheetElements = $this->converterDto->getResult(); $sheetElements = $this->converterDto->getResult();
$sheetElements['settings.finishers.' . $finisherIdentifier . '.' . $optionKey]['TCEforms'] = $elementConfiguration; $sheetElements['settings.finishers.' . $finisherIdentifier . '.' . $optionKey]['TCEforms'] = $elementConfiguration;
......
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment