mirror of
https://github.com/werkraum-media/events.git
synced 2024-11-13 00:36:13 +01:00
Daniel Siepmann
3d6bf0ac8a
It is now possible to create "Import" records in TYPO3 system. Those records can then be imported via two new commands. There is no need to configure everything within the command itself. That allows: * To allow editors to maintain import configuration. * Have proper labels, description, csh and UI to create import. It no longer is necessary to copy UIDs, instead proper wizards from TCA are available to select pages. Relates: #9649
51 lines
1.6 KiB
YAML
51 lines
1.6 KiB
YAML
services:
|
||
_defaults:
|
||
autowire: true
|
||
autoconfigure: true
|
||
public: false
|
||
|
||
Wrm\Events\:
|
||
resource: '../Classes/*'
|
||
|
||
events.levacy_comannd_identifier:
|
||
class: 'Wrm\Events\Command\DestinationDataImportCommand'
|
||
tags:
|
||
- name: 'console.command'
|
||
command: 'events:destinationdataimport‚'
|
||
description: 'Mind the trailing ",", there for backwards compatibility'
|
||
|
||
Wrm\Events\Command\DestinationDataImportCommand:
|
||
tags:
|
||
- name: 'console.command'
|
||
command: 'events:destinationdataimport'
|
||
description: 'Import Destination Data Events'
|
||
|
||
Wrm\Events\Command\ImportDestinationDataViaConfigruationCommand:
|
||
tags:
|
||
- name: 'console.command'
|
||
command: 'events:destinationdataimportviaconfiguration'
|
||
description: 'Import Destination Data Events'
|
||
|
||
Wrm\Events\Command\ImportDestinationDataViaAllConfigruationsCommand:
|
||
tags:
|
||
- name: 'console.command'
|
||
command: 'events:destinationdataimportviaallconfigurations'
|
||
description: 'Import Destination Data Events from all configurations'
|
||
|
||
Wrm\Events\Command\RemoveAllCommand:
|
||
tags:
|
||
- name: 'console.command'
|
||
command: 'events:removeAll'
|
||
description: 'Remove all event data'
|
||
|
||
Wrm\Events\Command\RemovePastCommand:
|
||
tags:
|
||
- name: 'console.command'
|
||
command: 'events:removePast'
|
||
description: 'Remove past events'
|
||
|
||
Wrm\Events\Extbase\AddSpecialProperties:
|
||
tags:
|
||
- name: event.listener
|
||
identifier: 'WrmEventsAddSpecialPropertiesToDate'
|
||
event: TYPO3\CMS\Extbase\Event\Persistence\AfterObjectThawedEvent
|