2 declare(strict_types = 1);
50 foreach (
$GLOBALS[
'TYPO3_CONF_VARS'][
'SC_OPTIONS'][
'ext/form'][
'initializeFormElement'] ?? [] as $className) {
51 $hookObj = GeneralUtility::makeInstance($className);
52 if (method_exists($hookObj,
'initializeFormElement')) {
53 $hookObj->initializeFormElement(
70 return sprintf(
'%s-%s', $formDefinition->getIdentifier(), $this->identifier);
114 if (is_array($value) && isset($this->properties[$key]) && is_array($this->properties[$key])) {
117 } elseif ($value ===
null) {
118 unset($this->properties[$key]);
120 $this->properties[$key] = $value;