events/ext_emconf.php
Daniel Siepmann (Codappix) 17fae724df
Make time zone for slugs configurable (#66)
Slugs of dates are generated during import.
This might lead to confusion if the time zone differs from frontend.
Therefore the time zone is now configurable to allow adjustments for the
actual website.

A new interface `TimeZoneProviderInterface` is provided which can be re
configured to a different implementation.

The default implementation will use TYPO3s `SYS.phpTimeZone` setting,
with fall back to `date_default_timezone_get()` call.
That way it should be useful for most systems out of the box.

Resolves: #11345
2024-09-10 14:32:23 +02:00

20 lines
487 B
PHP

<?php
declare(strict_types=1);
$EM_CONF['events'] = [
'title' => 'Events',
'description' => 'Extension to manage events',
'category' => 'plugin',
'author' => 'Dirk Koritnik, Daniel Siepmann',
'author_email' => 'koritnik@werkraum-media.de, coding@daniel-siepmann.de',
'state' => 'stable',
'version' => '4.2.1',
'constraints' => [
'depends' => [
'typo3' => '',
],
'conflicts' => [],
'suggests' => [],
],
];