mirror of
https://github.com/werkraum-media/events.git
synced 2024-11-24 17:36:10 +01:00
Daniel Siepmann (Codappix)
5f6c6eef0e
It is possible to have files such as `https://dam.destination.one/2675868/3dc0a9dccd0dad46c73e669ece428c634ff8324ea3d01a4858a1c43169deed41/.jpg`. Those were not handled correctly yet. We now also handle those cases. We will generate a hash from the URL as file name in order to still use those files. Relates: #11396
20 lines
529 B
PHP
20 lines
529 B
PHP
<?php
|
|
|
|
$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',
|
|
'createDirs' => '',
|
|
'clearCacheOnLoad' => 0,
|
|
'version' => '3.9.1',
|
|
'constraints' => [
|
|
'depends' => [
|
|
'typo3' => '10.4.00-11.5.99',
|
|
],
|
|
'conflicts' => [],
|
|
'suggests' => [],
|
|
],
|
|
];
|