I create TYPO3 extabase records in the backend, list view. When I use the fronted plugin instead, I can configure the record storage page of the elements like this in typoscript setup of the frontend plugin:
plugin.tx_xyz_run {
persistence {
storagePid = 2,4,5,6,7,8,9
recursiv = 1
classes {
XYZ\abc\Domain\Model\Rootobject {
newRecordStoragePid = 2
}
XYZ\abc\Domain\Model\Inlineobject {
newRecordStoragePid = 7
}
}
}
}
How can I configure the backend of TYPO3 to put the inline elements of an aggregate root object into the same separate sysfolders in the backend when I create the object in the list-view, like I can do it with the frontend-plugin?