mirror of
https://github.com/werkraum-media/events.git
synced 2024-11-10 07:56:11 +01:00
Allow multiline in title and subtitle
This commit is contained in:
parent
9d2825ed18
commit
55530ee062
1 changed files with 8 additions and 7 deletions
|
@ -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'
|
||||||
],
|
],
|
||||||
],
|
],
|
||||||
|
|
Loading…
Reference in a new issue