diff --git a/Classes/DataProcessing/ContainerProcessor.php b/Classes/DataProcessing/ContainerProcessor.php deleted file mode 100755 index 6d48d2a..0000000 --- a/Classes/DataProcessing/ContainerProcessor.php +++ /dev/null @@ -1,58 +0,0 @@ -getChildrenByColPos($colPos); - - if (!$processorConfiguration['doNotProcessChildren']) { - $contentRecordRenderer = new RecordsContentObject(); - $conf = [ - 'tables' => 'tt_content' - ]; - foreach ($children as &$child) { - if ($child['l18n_parent'] > 0) { - $conf['source'] = $child['l18n_parent']; - } else { - $conf['source'] = $child['uid']; - } - if ($child['t3ver_oid'] > 0) { - $conf['source'] = $child['t3ver_oid']; - } - $child['renderedContent'] = $cObj->render($contentRecordRenderer, $conf); - /** @var ContentObjectRenderer $recordContentObjectRenderer */ - $recordContentObjectRenderer = GeneralUtility::makeInstance(ContentObjectRenderer::class); - $recordContentObjectRenderer->start($child, 'tt_content'); - $child = $this->contentDataProcessor->process($recordContentObjectRenderer, $processorConfiguration, $child); - } - } - - $processedData[$as] = $children; - return $processedData; - } -}