events/ext_emconf.php
Daniel Siepmann (Codappix) 5f6c6eef0e
Handle destination.one files without file name. (#68)
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
2024-09-17 11:04:22 +02:00

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' => [],
],
];