mirror of
https://github.com/werkraum-media/events.git
synced 2024-11-22 03:16:11 +01:00
Daniel Siepmann
2d6c13e199
Provide a new option within configurations to turn on import of HTML from destination.one for detail text of each event. Resolves: #10629
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.0',
|
|
'constraints' => [
|
|
'depends' => [
|
|
'typo3' => '',
|
|
],
|
|
'conflicts' => [],
|
|
'suggests' => [],
|
|
],
|
|
];
|