Actions
Bug #82911
closedTCA Subclasses doese not affect ObjectStorages
Status:
Closed
Priority:
Should have
Assignee:
-
Category:
Extbase
Target version:
-
Start date:
2017-11-03
Due date:
% Done:
0%
Estimated time:
TYPO3 Version:
8
PHP Version:
7.1
Tags:
Complexity:
no-brainer
Is Regression:
Sprint Focus:
Description
config.tx_extbase {
persistence {
classes {
EXT\ExtA\Domain\Model\Facility {
subclasses {
EXT\ExtB\Domain\Model\AdvancedFacility = EXT\ExtB\Domain\Model\AdvancedFacility
}
}
EXT\ExtB\Domain\Model\AdvancedFacility {
mapping {
tableName = tx_ext_domain_model_facility
}
}
}
}
}
config.tx_extbase {
objects {
EXT\ExtA\Domain\Model\Facility {
className = EXT\ExtB\Domain\Model\AdvancedFacility
}
}
}
I try to subclass a Model over TCA (see above).
It works fine with repositories. Sadly ObjectStorages give me only the standard Facility not the AdvancedFacility.
I See in the Datamaps of the DataMapper the Subclass but it is completly ignored.
it was in a Schedule.
Actions