Project

General

Profile

Feature #93982

Updated by Guido Schmechel about 3 years ago

Currently, only one target and one source path are allowed for redirect requests. This is passed as a string to the demand. In contrast, you can pass the host with an array. 

 => typo3/sysext/redirects/Classes/Repository/Demand.php 


 The RedirectRepository (typo3/sysext/redirects/Classes/Repository/RedirectRepository.php) and its function getQueryBuilderForDemand could be a little bit more flexible. We could change from string to array and add the constraints with a for loop. 

 Advantage: It is easier to merge the demands and thus use a pagination from the core. This as support for a third-party extension. 

 Hint: This would be breaking and may only be implemented from v12

Back