i build a simple commentary extbase extension, which i want to include with typoscript in a project extension (also extbase). The fluid code in the project extension looks like this:
<f:for each="{project.reports}" as="report">
...Content...
{report -> f:cObject(typoscriptObjectPath: 'lib.comments')}
</f:for>
"Reports" is an array of id's. The lib.comments typoscript looks like this:
lib.comments = USER
lib.comments {
userFunc = tx_extbase_core_bootstrap->run
extensionName = Comments
pluginName = Comments
persistence.storagePid = ?
}
The StoragePid should match with the report id, so i tried: persistence.storagePid.cObject = TEXT persistence.storagePid.cObject.current = 1
But it doens't work. Has anyone an idea, which is the right way to set "current" to the storagePid?
persistence.storagePid.field = uid
All fields of "report" which gets passed along with "report -> f:cObject" will be available to stdWrap property ".field".
You could also do
to list all available fields of $cObj->data
You can disable storage PID checking in your repository by placing method at its beginning:
Then use
id
of current page by passing it to the repositories finder as common param and including as common constraint.of course current page's UID you fetches as usual with: