Feature: #106415 - Add stdWrap to config.htmlTag.attributes.[attr]
See forge#106415
Description
Each attribute within the TypoScript option
config. now supports all
std properties.
This option controls the attributes of the single
<html>
element of a rendered page.
Impact
It is now possible to use
user,
override, or
get within TypoScript:
Using override in TypoScript
config.htmlTag.attributes{
my-attribute = 123
my-attribute.override = 456
}
Copied!
Using userFunc in TypoScript
config.htmlTag.attributes {
my-attribute = 123
my-attribute.userFunc = MyVendor\\MyExtension\\HtmlTagEnhancer->overrideMyAttribute
}
Copied!