The ViewHelper is missing an attribute registration, the attribute "dataServiceProcessor" is documented, but not registered in the ViewHelper, so the ViewHelpers throws an error if it is set.
Steps to Reproduce
Use the ViewHelper in your view and set the attribute "dataServiceProcessor"
Expected behavior:
No exception ;)
Actual behavior:
An exception is thrown.
Versions
the latest version (master) and v10. v9 was not tested yet.
Solution:
public function initializeArguments(): void
{
parent::initializeArguments();
$this->registerArgument('dataServiceProcessor', 'string', 'the data processing service name as configured in Usercentrics', true);
}
Bug Report
Prerequisites
Description
The ViewHelper is missing an attribute registration, the attribute "dataServiceProcessor" is documented, but not registered in the ViewHelper, so the ViewHelpers throws an error if it is set.
Steps to Reproduce
Expected behavior:
No exception ;)
Actual behavior:
An exception is thrown.
Versions
the latest version (master) and v10. v9 was not tested yet.
Solution: