mirror of
https://github.com/werkraum-media/events.git
synced 2025-03-30 22:23:47 +02:00
A new PSR-14 event is added that allows to modify the event right before it is persisted within Destination Data One import. This for example allows to alter dates, prices, etc. Improve handling of missing end time in dates.
20 lines
484 B
PHP
20 lines
484 B
PHP
<?php
|
|
|
|
$EM_CONF['events'] = [
|
|
'title' => 'Events',
|
|
'description' => 'Extension to manage events',
|
|
'category' => 'plugin',
|
|
'author' => 'Dirk Koritnik',
|
|
'author_email' => 'koritnik@werkraum-media.de',
|
|
'state' => 'alpha',
|
|
'createDirs' => '',
|
|
'clearCacheOnLoad' => 0,
|
|
'version' => '3.5.0',
|
|
'constraints' => [
|
|
'depends' => [
|
|
'typo3' => '10.4.00-11.5.99',
|
|
],
|
|
'conflicts' => [],
|
|
'suggests' => [],
|
|
],
|
|
];
|