Allow multiline in title and subtitle

This commit is contained in:
Dirk Koritnik 2021-03-08 13:45:31 +01:00 committed by Daniel Siepmann
parent 9d2825ed18
commit 55530ee062

View file

@ -170,8 +170,9 @@ return [
'exclude' => true, 'exclude' => true,
'label' => $l10nPath . ':tx_events_domain_model_event.title', 'label' => $l10nPath . ':tx_events_domain_model_event.title',
'config' => [ 'config' => [
'type' => 'input', 'type' => 'text',
'size' => 30, 'cols' => 40,
'rows' => 2,
'eval' => 'trim' 'eval' => 'trim'
] ]
], ],
@ -179,8 +180,9 @@ return [
'exclude' => true, 'exclude' => true,
'label' => $l10nPath . ':tx_events_domain_model_event.subtitle', 'label' => $l10nPath . ':tx_events_domain_model_event.subtitle',
'config' => [ 'config' => [
'type' => 'input', 'type' => 'text',
'size' => 30, 'cols' => 40,
'rows' => 2,
'eval' => 'trim' 'eval' => 'trim'
] ]
], ],
@ -264,9 +266,8 @@ return [
'exclude' => true, 'exclude' => true,
'label' => $l10nPath . ':tx_events_domain_model_event.name', 'label' => $l10nPath . ':tx_events_domain_model_event.name',
'config' => [ 'config' => [
'type' => 'text', 'type' => 'input',
'cols' => 40, 'size' => 30,
'rows' => 2,
'eval' => 'trim' 'eval' => 'trim'
], ],
], ],