Actions
Task #56061
closedEpic #55070: Workpackages
Epic #54851: WP: Workspaces IRRE & MM bugfixes
Story #54853: As a user I want to correctly create, modify, preview and publish IRRE & MM related workspace changes
Introduce MM_oppositeUsage property
Start date:
2014-02-18
Due date:
% Done:
100%
Estimated time:
TYPO3 Version:
6.2
PHP Version:
5.3
Tags:
Complexity:
Sprint Focus:
Description
On copying a sys_category record, a new MM reference is created, however without setting the "fieldname".
This value is basically defined from the opposite entity with MM_match_fields, but cannot be accessed.
This change introduces the MM_oppositeUsage property for MM definitions in the TCA.
Example:
...
'allowed' => '*',
'MM' => 'tx_myextension_first_second_mm',
'MM_oppositeUsage' => array(
'tt_content' => array('somefield'),
'tx_myextension_domain_model' => array('some_property'),
),
...
Actions