initializeResultArray(); $fieldName = $this->data['flexFormFieldName'] ?? $this->data['fieldName']; $html = []; $html[] = '
'; $html[] = 'This is dummy output: Field ' . htmlspecialchars($fieldName) . ''; $html[] = 'of table ' . htmlspecialchars($this->data['tableName']) . ''; $html[] = ' is registered as type="user" element without a specific renderType.'; $html[] = ' Please look up details in TCA reference documentation for type="user".'; $html[] = '
'; $resultArray['html'] = $this->wrapWithFieldsetAndLegend(implode(LF, $html)); return $resultArray; } }