2 namespace TYPO3\CMS\Fluid\ViewHelpers\Uri;
45 public function render($path, $extensionName = null, $absolute =
false)
47 return static::renderStatic(
50 'extensionName' => $extensionName,
51 'absolute' => $absolute
54 $this->renderingContext
66 $path = $arguments[
'path'];
67 $extensionName = $arguments[
'extensionName'];
68 $absolute = $arguments[
'absolute'];
70 if ($extensionName === null) {
71 $extensionName = $renderingContext->
getControllerContext()->getRequest()->getControllerExtensionName();
75 $uri = \TYPO3\CMS\Core\Utility\PathUtility::stripPathSitePrefix($uri);
76 if (TYPO3_MODE ===
'BE' && $absolute ===
false && $uri !==
false) {
79 if ($absolute ===
true) {