events/Tests/Functional/Import/DestinationDataTest/Fixtures/Database/ExistingFeatures.php
Daniel Siepmann ab75902a95
Fix broken assignment of features and categories (#41)
We migrated the part of the import to use DataHandler.
We didn't invest too much time as budgets are low.
Still the bugs are covered with tests and fixed.

Relates: #10782
2023-11-06 08:44:03 +01:00

22 lines
493 B
PHP

<?php
return [
'tx_events_domain_model_event' => [
[
'uid' => 1,
'pid' => 2,
'global_id' => 'e_100347853',
'features' => 1,
],
],
'sys_category_record_mm' => [
[
'uid_local' => 5,
'uid_foreign' => 1,
'tablenames' => 'tx_events_domain_model_event',
'fieldname' => 'features',
'sorting' => 0,
'sorting_foreign' => 1,
],
],
];