mirror of
https://github.com/Codappix/typo3-php-datasets.git
synced 2024-11-11 08:16:11 +01:00
25 lines
617 B
PHP
25 lines
617 B
PHP
|
<?php
|
||
|
|
||
|
return [
|
||
|
'sys_category_record_mm' => [
|
||
|
[
|
||
|
'uid_local' => 1,
|
||
|
'uid_foreign' => 1,
|
||
|
'tablenames' => 'pages',
|
||
|
'fieldname' => 'categories',
|
||
|
'sorting' => 0,
|
||
|
'sorting_foreign' => 1,
|
||
|
],
|
||
|
// A single one would work.
|
||
|
// But a 2nd would have the same internal index, an empty key.
|
||
|
[
|
||
|
'uid_local' => 1,
|
||
|
'uid_foreign' => 2,
|
||
|
'tablenames' => 'pages',
|
||
|
'fieldname' => 'categories',
|
||
|
'sorting' => 0,
|
||
|
'sorting_foreign' => 2,
|
||
|
],
|
||
|
],
|
||
|
];
|