mirror of
https://github.com/werkraum-media/events.git
synced 2024-11-09 23:56:11 +01:00
TYPO3 Extension providing events with import of destination data one
https://docs.typo3.org/p/werkraummedia/events/main/en-us/
Daniel Siepmann
38b4844a9d
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 |
||
---|---|---|
Classes | ||
Configuration | ||
Documentation | ||
Resources | ||
Tests/Unit | ||
.gitignore | ||
composer.json | ||
ext_emconf.php | ||
ext_localconf.php | ||
ext_tables.php | ||
ext_tables.sql | ||
ExtensionBuilder.json | ||
phpcs.xml.dist | ||
README.md |
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';