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 38b4844a9d Add pages to events
Allow editor to reference TYPO3 page records from events.
E.g. used to provide further internal information links.

Also those pages are resolved via DataProcessing.
That allows integrators to be 100% flexible to resolve those page info.
By default a menu is generated and media is resolved.

Also validation is ignored, as this improves performance and allows to
use the new class as injected property without validation fails.
Models are not managed via frontend and therefore don't need validation.

Relates: #8092
2021-09-07 07:52:17 +02:00
Classes Add pages to events 2021-09-07 07:52:17 +02:00
Configuration Add pages to events 2021-09-07 07:52:17 +02:00
Documentation Refactored EXT dd_events to events, added fields to page type poi 2019-07-18 13:44:19 +02:00
Resources Add pages to events 2021-09-07 07:52:17 +02:00
Tests/Unit Setup unit testing 2021-09-07 07:52:16 +02:00
.gitignore Add missing dependencies 2021-09-07 07:49:39 +02:00
composer.json Setup unit testing 2021-09-07 07:52:16 +02:00
ext_emconf.php Update ext_emconf.php 2021-08-12 10:29:30 +00:00
ext_localconf.php Allow to use plugin icon via identifier 2021-09-07 07:52:16 +02:00
ext_tables.php Add php code sniffer to follow PSR-12 2021-09-07 07:51:36 +02:00
ext_tables.sql Add pages to events 2021-09-07 07:52:17 +02:00
ExtensionBuilder.json Refactored EXT dd_events to events, added fields to page type poi 2019-07-18 13:44:19 +02:00
phpcs.xml.dist Adjust code and config to pass php code sniffer 2021-09-07 07:51:36 +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';