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 6b6ae5b20c Do not break tests once a certain date is passed
The code used native date functions, this made tests not robust.
We switch to TYPO3 API to fetch the current date and time.
Test is adjusted to define the date and time to verify code works as
expected.
2022-07-07 09:10:14 +02:00
Classes Do not break tests once a certain date is passed 2022-07-07 09:10:14 +02:00
Configuration Allow no region in flexform. Increase version 2022-04-28 09:20:35 +02:00
Documentation Fix none working import of ticket links from destination data 2022-07-07 09:03:29 +02:00
Resources Add new icon for configuration data 2022-02-03 15:54:27 +01:00
Tests Do not break tests once a certain date is passed 2022-07-07 09:10:14 +02:00
.gitignore Add TYPO3 v11 configurations 2021-12-13 08:48:34 +01:00
.gitlab-ci.yml Actually execute phpstan in phpstan 7.2 job, not phpunit 2022-01-26 15:02:20 +01:00
composer.json Pin phpstan and extensions 2022-04-25 07:53:27 +02:00
ecs.php Add CI 2021-09-07 09:26:59 +02:00
ext_emconf.php Fix none working import of ticket links from destination data 2022-07-07 09:03:29 +02:00
ext_localconf.php Fix warnings in higher PHP versions ending up in TYPO3 log 2021-12-20 10:20:47 +01:00
ext_tables.php Add CI 2021-09-07 09:26:59 +02:00
ext_tables.sql Add import configuration record 2022-01-27 15:50:36 +01:00
phpstan-baseline.neon Update phpstan issues 2022-04-21 09:36:51 +02:00
phpstan.neon Don't break PHPStan due to updated dependencies type hints 2022-01-26 15:04:28 +01:00
phpunit.xml.dist Use new import class and move url building and fetching 2022-01-26 15:15:15 +01:00
README.md Migrate readme to Documentation 2021-12-13 08:48:10 +01:00

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';