TYPO3 Extension providing events with import of destination data one https://docs.typo3.org/p/werkraummedia/events/main/en-us/
Find a file
Daniel Siepmann c38241f351 Fix broken upcoming feature
Using a FlexForm results in stored Unixtimestamps.
Adding 00:00 and using strtotime will result in false, resulting in
null.

We now just keep the provided value as integer.
That way underlying code works as expected and delivers events from
given start date.

Relates: #9352, #8581
2021-10-11 11:33:52 +02:00
Classes Fix broken upcoming feature 2021-10-11 11:33:52 +02:00
Configuration Add CI 2021-09-07 09:26:59 +02:00
Documentation Refactored EXT dd_events to events, added fields to page type poi 2019-07-18 13:44:19 +02:00
Resources Show cancel notice 2021-09-07 19:23:57 +02:00
.gitignore Add CI 2021-09-07 09:26:59 +02:00
.gitlab-ci.yml Mark extension compatible with php 7.2 2021-09-07 16:19:29 +02:00
composer.json Mark extension compatible with php 7.2 2021-09-07 16:19:29 +02:00
ecs.php Add CI 2021-09-07 09:26:59 +02:00
ext_emconf.php Edit version and constraints 2021-09-07 19:02:15 +02:00
ext_localconf.php Adjust formatting 2021-09-07 07:52:28 +02:00
ext_tables.php Add CI 2021-09-07 09:26:59 +02:00
ext_tables.sql Allow to reference events from event 2021-09-07 07:52:29 +02:00
ExtensionBuilder.json Refactored EXT dd_events to events, added fields to page type poi 2019-07-18 13:44:19 +02:00
phpstan-baseline.neon Add PHPStan 2021-09-07 11:07:55 +02:00
phpstan.neon Do not break PHPStan due to new PHPDoc in TYPO3 source 2021-10-11 11:32:27 +02:00
README.md Refactored the import command 2019-08-12 15:49:52 +02:00

Destination Data Event Import Extension

Start Symfony Command to import Events local
TYPO3_CONTEXT=Development php vendor/bin/typo3 events:import
Start Symfony Command to import Events on Stage
TYPO3_CONTEXT=Production/Staging /usr/local/bin/php7.1.6-cli typo3cms/stage.thueringer-staedte.de/current/vendor/bin/typo3 events:import
Clean category relations
TRUNCATE TABLE tx_events_domain_model_event;
TRUNCATE TABLE tx_events_domain_model_date;
TRUNCATE TABLE tx_events_domain_model_organizer;
DELETE FROM sys_category_record_mm WHERE tablenames = 'tx_events_domain_model_event';
DELETE FROM sys_file_reference WHERE tablenames = 'tx_events_domain_model_event';
DELETE FROM sys_file WHERE identifier LIKE '%/events/%';
DELETE FROM sys_file_metadata WHERE alternative = 'DD Import';