mirror of
https://github.com/werkraum-media/events.git
synced 2024-11-21 17:16:11 +01:00
Daniel Siepmann (Codappix)
17fae724df
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
20 lines
487 B
PHP
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' => [],
|
|
],
|
|
];
|