2 declare(strict_types = 1);
50 'renderType' =>
'tcaDescription',
60 'localizationStateSelector' => [
61 'renderType' =>
'localizationStateSelector',
63 'otherLanguageContent' => [
64 'renderType' =>
'otherLanguageContent',
66 'localizationStateSelector',
69 'defaultLanguageDifferences' => [
70 'renderType' =>
'defaultLanguageDifferences',
72 'otherLanguageContent',
85 public function render(): array
88 $this->resultArray[
'stylesheetFiles'][] =
'EXT:t3editor/Resources/Public/JavaScript/Contrib/cm/lib/codemirror.css';
89 $this->resultArray[
'stylesheetFiles'][] =
'EXT:t3editor/Resources/Public/Css/t3editor.css';
90 $this->resultArray[
'requireJsModules'][] = [
91 'TYPO3/CMS/T3editor/T3editor' =>
'function(T3editor) {T3editor.observeEditorCandidates()}'
95 GeneralUtility::makeInstance(T3editor::class)->registerConfiguration();
98 foreach ($registeredAddons as $addon) {
99 foreach ($addon->getCssFiles() as $cssFile) {
100 $this->resultArray[
'stylesheetFiles'][] = $cssFile;
104 $parameterArray = $this->data[
'parameterArray'];
108 $attributes[
'rows'] = $parameterArray[
'fieldConf'][
'config'][
'rows'];
111 $attributes[
'wrap'] =
'off';
112 $attributes[
'style'] =
'width:100%;';
113 $attributes[
'onchange'] = GeneralUtility::quoteJSvalue($parameterArray[
'fieldChangeFunc'][
'TBE_EDITOR_fieldChanged']);
115 $attributeString = GeneralUtility::implodeAttributes($attributes,
true);
118 $parameterArray[
'itemFormElName'],
119 'text-monospace enable-tab',
120 $parameterArray[
'itemFormElValue'],
122 $this->data[
'tableName'] .
' > ' . $this->data[
'fieldName'],
125 'effectivePid' => $this->data[
'effectivePid']
130 $fieldInformationHtml = $fieldInformationResult[
'html'];
134 $fieldControlHtml = $fieldControlResult[
'html'];
138 $fieldWizardHtml = $fieldWizardResult[
'html'];
142 $html[] =
'<div class="formengine-field-item t3js-formengine-field-item">';
143 $html[] = $fieldInformationHtml;
144 $html[] =
'<div class="form-control-wrap">';
145 $html[] =
'<div class="form-wizards-wrap">';
146 $html[] =
'<div class="form-wizards-element">';
147 $html[] =
'<div class="t3editor-wrapper">';
148 $html[] = $editorHtml;
151 if (!empty($fieldControlHtml)) {
152 $html[] =
'<div class="form-wizards-items-aside">';
153 $html[] =
'<div class="btn-group">';
154 $html[] = $fieldControlHtml;
158 if (!empty($fieldWizardHtml)) {
159 $html[] =
'<div class="form-wizards-items-bottom">';
160 $html[] = $fieldWizardHtml;
167 $this->resultArray[
'html'] = implode(LF, $html);
188 string $content =
'',
189 string $additionalParams =
'',
191 array $hiddenfields = []
198 $attributes[
'class'] = $class .
' t3editor';
199 $attributes[
'alt'] = $alt;
200 $attributes[
'id'] =
't3editor_' . md5($name);
201 $attributes[
'name'] = $name;
205 foreach ($registeredAddons as $addon) {
206 $addons[] = $addon->getIdentifier();
209 $attributes[
'data-codemirror-config'] = json_encode([
210 'mode' =>
$mode->getIdentifier(),
211 'addons' => json_encode($addons),
212 'options' => json_encode($settings)
215 $attributesString =
'';
216 foreach ($attributes as $attribute => $value) {
217 $attributesString .= $attribute .
'="' . htmlspecialchars((
string)$value) .
'" ';
219 $attributesString .= $additionalParams;
221 $code[] =
'<textarea ' . $attributesString .
'>' . htmlspecialchars($content) .
'</textarea>';
223 if (!empty($hiddenfields)) {
224 foreach ($hiddenfields as $attributeName => $value) {
225 $code[] =
'<input type="hidden" name="' . htmlspecialchars($attributeName) .
'" value="' . htmlspecialchars((
string)$value) .
'" />';
228 return implode(LF, $code);
237 $config = $this->data[
'parameterArray'][
'fieldConf'][
'config'];
239 if (!isset($config[
'format'])) {
243 $identifier = $config[
'format'];
244 if (strpos($config[
'format'],
'/') !==
false) {
245 $parts = explode(
'/', $config[
'format']);
246 $identifier = end($parts);