I have the following part in my realURL-configuration in my TYPO 8.7 installation:
'locationConfiguration' => array(
array(
'GETvar' => 'continent',
'valueMap' => array(
'europe' => 1,
'europa'=>1,
'americas' => 2,
'africa' => 4,
'afrika' => 4,
'amerika' => 2,
'asia' => 3,
'asien' => 3,
),
'valueDefault' => '',
'noMatch' => 'bypass',
),
'134' => 'locationConfiguration',
These are simple GetVars which I want to have translated. The argument "continent" is optional, so the final url should also work without this argument. As a Newbe in TYPO3 9.5 I wonder if this works with enahancer type "Simple Enhancer" and if I can combine this with "aspects".
Note: Its not an extbase plugin with Controller->Action etc. but an oldstyle plugin.
Could anybody post some sample, which meets the above configuration ?
Thanks a lot !