Add TipTap editor and switch tags to event/organization edit

This commit is contained in:
Jürgen Mummert
2026-03-01 12:54:36 +01:00
parent 76be3bcd09
commit 141e310320
7 changed files with 1062 additions and 46 deletions
@@ -103,8 +103,9 @@ class EventEditController extends AbstractFrontendModuleController
'endTime' => $this->resolveFormEndTime($event),
'location_id' => (int) ($event['location_id'] ?? 0),
'tags' => $currentTagIds,
'teaser' => (string) ($event['teaser'] ?? ''),
'description' => (string) ($event['description'] ?? ''),
'teaser' => '' !== trim((string) ($event['teaser'] ?? ''))
? (string) ($event['teaser'] ?? '')
: (string) ($event['description'] ?? ''),
'url' => (string) ($event['url'] ?? ''),
'photographer' => (string) ($event['photographer'] ?? ''),
'addImage' => '1' === (string) ($event['addImage'] ?? ''),