I need a custom aspect mapper class, to define the value of an optional get parameter. this parameter holds an cf_cache identifier with extra data. But this parameter produces a cHash parameter what i dont need, and dont want to see in the URL's.
The docs (https://docs.typo3.org/typo3cms/extensions/core/Changelog/9.5/Feature-86365-RoutingEnhancersAndAspects.html) says:
If the requirements are too loose, a URL signature parameter ("cHash") is added to the end of the URL which cannot be removed.
And also:
If you really have the requirement to never have a cHash argument, ensure that all placeholders are having strict definitions on what could be the result of the page segment (e.g. pagination), and feel free to build custom mappers.
The feature description explains only how to register a custom enhancer class in ext_tables.php, but not how to use own aspect mappers :-(
With pleasure, but how?