Feature #51100
Links with absolute URI should have the option of URI Scheme
0%
Description
At the moment it's not possible to build absolute URIs with https scheme.
Only the ExternalViewHelper allows configuring the URI scheme.
Describing example of the problem:
<f:uri.action pageUid="1" arguments="{client:client}" absolute="1" />
builds a full link like:
- http://example.com/index.php?id=1&tx_myplugin[client]=10
But there's no option to set the URI scheme to https, alghough the
uriBuilder would allow setting the URI scheme:
$uriBuilder->setAbsoluteUriScheme("https");
(Referring to: fluid/Classes/ViewHelpers/Uri/ActionViewHelper.php)
--
So there should be another option for this in the render method in the Action/Page Viewhelpers!
Files
Updated by Patrick Kroog over 7 years ago
- File ActionViewHelper.patch ActionViewHelper.patch added
- File PageViewHelper.patch PageViewHelper.patch added
These are patches for TYPO3 v4.7.14 on the Uri ViewHelpers
- PageViewHelper
- ActionViewHelper
Both must be used, otherwise the uribuilder doesn't UNSET the uri scheme value before the next link is generated..
Updated by Patrick Kroog over 7 years ago
- File ActionViewHelper.patch ActionViewHelper.patch added
- File PageViewHelper.patch PageViewHelper.patch added
These are the patches for the Link ViewHelpers (TYPO3 v. 4.7.14)