Known Problems 

Current limitation in FragmentIdentifierProcessor  

While the DataProcessor can process TypoScript references ( =< ) to other cObjects inside fragmentIdentifier , lib.contentElement.variables.fragmentIdentifier must not be a reference by itself.

// This would work:
lib.contentElement {
    variables.fragmentIdentifier < lib.yourCustomFragment
}

// This would work:
lib.contentElement {
    variables.fragmentIdentifier = COA
    variables.fragmentIdentifier {
        10 =< lib.yourCustomFragment
    }
}

// This will not work:
lib.contentElement {
    variables.fragmentIdentifier =< lib.yourCustomFragment
}
Copied!