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 06d111e132 Do not trigger warning if no category was configured
The import already worked without category, but triggered a warning.
Tests were extended to always work with category, except in new test
case.
All tests were extended to check for empty logs in the end.

The import now checks whether category should be imported and ignores
further processing if not configured.

Relates: #9542
2021-12-20 10:15:26 +01:00
Classes Do not trigger warning if no category was configured 2021-12-20 10:15:26 +01:00
Configuration Remove no longer existing ctrl entry 2021-12-13 09:42:24 +01:00
Documentation Make region optional during import 2021-12-14 17:31:56 +01:00
Resources Show cancel notice 2021-09-07 19:23:57 +02:00
Tests Do not trigger warning if no category was configured 2021-12-20 10:15:26 +01:00
.gitignore Add TYPO3 v11 configurations 2021-12-13 08:48:34 +01:00
.gitlab-ci.yml Fix Coding Guideline check on CI 2021-12-16 09:13:15 +01:00
composer.json Add first basic functional test for import 2021-12-16 09:08:16 +01:00
ecs.php Add CI 2021-09-07 09:26:59 +02:00
ext_emconf.php Remove usage of uploads folder, use transient API instead 2021-12-16 10:00:51 +01: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
phpstan-baseline.neon Make region optional during import 2021-12-14 17:31:56 +01:00
phpstan.neon Remove PHPStan issues 2021-12-14 17:31:46 +01:00
phpunit.xml.dist Add first basic functional test for import 2021-12-16 09:08:16 +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';