events/Tests/Functional/Import/DestinationDataTest/Assertions/ImportsSource.php
Daniel Siepmann 5af1d08148
Add source while importing from Destination Data One (#37)
Destination Data One provides an source info explaining where the data
originally came from.
This is now added to event records and exposed in TYPO3 backend.
That allows editors to check the source and contact corresponding
sources in order to fix broken data.

Relates: #10630
2023-08-10 15:02:05 +02:00

25 lines
647 B
PHP

<?php
return [
'tx_events_domain_model_event' => [
[
'uid' => 1,
'global_id' => 'e_100347853',
'source_name' => 'destination.one',
'source_url' => 'http://destination.one/',
],
[
'uid' => 2,
'global_id' => 'e_100347854',
'source_name' => 'Foreign Example 1',
'source_url' => 'https://example.com',
],
[
'uid' => 3,
'global_id' => 'e_100347855',
'source_name' => 'Foreign Example 2',
'source_url' => 'https://example.com/something-else',
],
],
];