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 a332bffc25 Add synonym feature for date search
Allow configuration of synonyms via TypoScript.
This is taken into account when searching dates via submitted demand.

The configuration looks like the following:

    plugin.tx_events {
        settings {
            synonyms {
                10 {
                    word = Stadtführung
                    synonyms = Tour, Stadtführungen, Führung
                }
            }
        }
    }

The 10, 11, … is necessary as umlauts won't work as keys.
So `synonyms.Stadtführung = Tour, Stadtführungen` will not work.

Relates: #9158
2021-07-13 13:13:15 +02:00
Classes Add synonym feature for date search 2021-07-13 13:13:15 +02:00
Configuration Fix region translation 2020-10-01 16:37:44 +02:00
Documentation Refactored EXT dd_events to events, added fields to page type poi 2019-07-18 13:44:19 +02:00
Resources Translate search form 2020-10-01 17:13:37 +02:00
Tests/Unit Refactored EXT dd_events to events, added fields to page type poi 2019-07-18 13:44:19 +02:00
.gitignore Refactored EXT dd_events to events, added fields to page type poi 2019-07-18 13:44:19 +02:00
composer.json Add lanuage handling 2020-10-01 08:34:13 +02:00
ext_emconf.php Add lanuage handling 2020-10-01 08:34:13 +02:00
ext_localconf.php Add lanuage handling 2020-10-01 08:34:13 +02:00
ext_tables.php Added map, changed gulp 2019-07-25 12:42:37 +02:00
ext_tables.sql Add social links 2020-08-19 11:30:13 +02:00
ExtensionBuilder.json Refactored EXT dd_events to events, added fields to page type poi 2019-07-18 13:44:19 +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';