Feature: #85550 - Introduce context for TypoScript data getText property
See forge#85550
Description
The new context API can now be accessed via the get
property in TypoScript.
Example:
page.10 = TEXT
page.10.data = context:workspace:id
page.10.wrap = You are in workspace: |
Copied!
Where as context
is the keyword for accessing an aspect, the second part is the name of the aspect,
and the third part is the property of the aspect.
data = context:[aspectName]:[propertyName]
Copied!
If a property is an array, it is converted into a comma-separated list.