object-access
Class:
\CPSIT\
Resolves a property (or nested property path) from an object and stores the resulting value in the processed data. This is useful for pulling individual properties out of an Extbase domain object (or any other object) that was placed into the data processing chain by a preceding processor or controller, without having to expose the whole object to the template.
Data sources
The
object
property does not name a source object directly.
Instead, it names the key under which the object is stored, and that key is
looked up across all four data sources, tried in the order listed:
| Data source identifier | Contains |
|---|---|
processor | This processor's own config block |
processed | Accumulated output from previous processors |
content | Current record's field values |
content | Top-level
HANDLEBARSTEMPLATE
config |
This is what allows
object
to refer to a value placed into
processed by a preceding processor's
as
option, or to a variable an Extbase controller assigned directly to the
view.
Usage
data also runs for Extbase plugins whose controller
extends HandlebarsController, since
Handlebars
renders through the same
HANDLEBARSTEMPLATE
content object under
the hood. An action that assigns a domain object to the view makes that object
available to
object- under the assigned key:
final class BlogController extends HandlebarsController
{
public function showAction(Post $post): ResponseInterface
{
$this->view->assign('post', $post);
return $this->htmlResponse($this->renderView());
}
}
plugin.tx_myextension_blog.handlebars {
Blog::show {
dataProcessing {
# Pull the related category's title off the assigned "post" object
10 = object-access
10 {
object = post
path = category.title
as = categoryTitle
}
}
}
}
Properties
object- Key under which the source object is looked up (see Data sources). Required.
path- Property path passed to
TYPO3\. Supports plain property names as well as dot-separated nested paths (e.g.CMS\ Extbase\ Reflection\ Object Access:: get Property () category.). Required.title as- Target key in the processed data array the resolved value is stored
under. Default:
result.
If
object
is not configured, or the resolved value is not an
object, or
path
is missing, or
path
is not a
gettable property on the resolved object, a warning is logged and the
processed data is returned unchanged.
When the resolved value is itself an array, it is run through the standard
TYPO3
data chain configured on this processor, just
like TYPO3's own
menu
or
database-
processors do for their items.