calendar/ext_emconf.php
Daniel Siepmann 98762332f5
calendar logic
Provide data structure for month, weeks and days.
Provide controller to open month, week and day.

Relates: #7887
2020-10-27 13:32:50 +01:00

22 lines
526 B
PHP

<?php
$EM_CONF['calendar'] = [
'title' => 'Calendar',
'description' => 'API for extensions to create calendar',
'category' => 'misc',
'author' => 'Daniel Siepmann',
'author_email' => 'coding@daniel-siepmann.de',
'author_company' => 'Codappix GmbH',
'state' => 'alpha',
'uploadfolder' => 0,
'clearCacheOnLoad' => 0,
'version' => '1.0.0',
'constraints' => [
'depends' => [
'typo3' => '*',
],
'conflicts' => [],
'suggests' => [],
],
];