Skip to content

Commit 0d9a4cf

Browse files
authored
[TASK] cObject retrieves raw record automatically (#1421)
Resolves: TYPO3-Documentation/TYPO3CMS-Tutorial-SitePackage#239 Releases: main, 13.4
1 parent b039fa5 commit 0d9a4cf

File tree

2 files changed

+1
-6
lines changed

2 files changed

+1
-6
lines changed

Documentation/DataProcessing/PageContentFetchingProcessor.rst

Lines changed: 0 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -69,11 +69,6 @@ or render it your self.
6969
`{contentElement.fullType}`
7070
Is composed of "tt_content.[CType]". For a content element of type text it
7171
contains "tt_content.text".
72-
`{contentElement.rawRecord}`
73-
Contains an array with the raw row from the database. As the
74-
:typoscript:`tt_content` TypoScript object expects the raw data as input
75-
you should use `{contentElement.rawRecord}` in combination with the
76-
CObject ViewHelper.
7772

7873
The :ref:`backend layout <t3coreapi:be-layout>` is defined like this:
7974

Documentation/DataProcessing/_PageContentFetchingProcessor/_Default.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ <h2>{contentElement.header}</h2>
99
<f:cObject
1010
typoscriptObjectPath="{contentElement.mainType}"
1111
table="{contentElement.mainType}"
12-
data="{contentElement.rawRecord}"
12+
data="{contentElement}"
1313
/>
1414
</f:for>
1515
</main>

0 commit comments

Comments
 (0)