mirror of
https://github.com/werkraum-media/events.git
synced 2024-11-10 06:16:11 +01:00
Daniel Siepmann
ca4d7d3a01
Allows to remove all existing records regarding events. It will search for all pages providing either organizer or events, and will delete both types of records. As DataHandler is used for deletion, there is already logging within TYPO3, as well as recursive deletion for dates and sys_file_references. To speedup for large data sets, truncate organizer and dates, as they don't have recursive deletions, e.g. to sys_file_references. Also add keys to database.
9 lines
241 B
PHP
9 lines
241 B
PHP
<?php
|
||
return [
|
||
'events:destinationdataimport‚' => [
|
||
'class' => \Wrm\Events\Command\DestinationDataImportCommand::class
|
||
],
|
||
'events:removeAll' => [
|
||
'class' => \Wrm\Events\Command\RemoveAllCommand::class
|
||
],
|
||
];
|