action link * ``` * * @see https://docs.typo3.org/permalink/t3viewhelper:typo3-fluid-uri-action */ final class ActionViewHelper extends AbstractViewHelper { public function initializeArguments(): void { $this->registerArgument('action', 'string', 'Target action'); $this->registerArgument('arguments', 'array', 'Arguments for the controller action, associative array (do not use reserved keywords "action", "controller" or "format" if not referring to these internal variables specifically)', false, []); $this->registerArgument('controller', 'string', 'Target controller. If NULL current controllerName is used'); $this->registerArgument('extensionName', 'string', 'Target Extension Name (without `tx_` prefix and no underscores). If NULL the current extension name is used'); $this->registerArgument('pluginName', 'string', 'Target plugin. If empty, the current plugin name is used'); $this->registerArgument('pageUid', 'int', 'Target page. See TypoLink destination'); $this->registerArgument('pageType', 'int', 'Type of the target page. See typolink.parameter', false, 0); $this->registerArgument('noCache', 'bool', 'Set this to disable caching for the target page. You should not need this.'); $this->registerArgument('language', 'string', 'link to a specific language - defaults to the current language, use a language ID or "current" to enforce a specific language'); $this->registerArgument('section', 'string', 'The anchor to be added to the URI', false, ''); $this->registerArgument('format', 'string', 'The requested format, e.g. ".html', false, ''); $this->registerArgument('linkAccessRestrictedPages', 'bool', 'If set, links pointing to access restricted pages will still link to the page even though the page cannot be accessed.', false, false); $this->registerArgument('additionalParams', 'array', 'Additional query parameters that won\'t be prefixed like $arguments (overrule $arguments)', false, []); $this->registerArgument('absolute', 'bool', 'If set, the URI of the rendered link is absolute', false, false); $this->registerArgument('addQueryString', 'string', 'If set, the current query parameters will be kept in the URL. If set to "untrusted", then ALL query parameters will be added. Be aware, that this might lead to problems when the generated link is cached.', false, false); $this->registerArgument('argumentsToBeExcludedFromQueryString', 'array', 'Arguments to be removed from the URI. Only active if $addQueryString = true', false, []); } public function render(): string { $request = null; if ($this->renderingContext->hasAttribute(ServerRequestInterface::class)) { $request = $this->renderingContext->getAttribute(ServerRequestInterface::class); } $childContent = (string)$this->renderChildren(); if ($request instanceof ExtbaseRequestInterface) { $uri = self::createUriWithExtbaseContext($request, $this->arguments); if ($uri === '') { return $childContent; } return $uri; } if ($request instanceof ServerRequestInterface && ApplicationType::fromRequest($request)->isFrontend()) { $linkResult = self::createFrontendLinkWithCoreContext($request, $this->arguments, $childContent); if ($linkResult === null) { return $childContent; } return $linkResult->getUrl(); } throw new \RuntimeException( 'The rendering context of ViewHelper f:uri.action is missing a valid request object.', 1690360598 ); } /** * Only to be used by \TYPO3\CMS\Fluid\ViewHelpers\Link\ActionViewHelper * @internal */ public static function createFrontendLinkWithCoreContext(ServerRequestInterface $request, array $arguments, string $childContent): ?LinkResultInterface { // No support for following arguments: // * format $pageUid = isset($arguments['pageUid']) ? (int)$arguments['pageUid'] : null; $pageType = (int)$arguments['pageType']; $noCache = (bool)($arguments['noCache'] ?? false); $language = isset($arguments['language']) ? (string)$arguments['language'] : null; $section = $arguments['section']; $linkAccessRestrictedPages = (bool)$arguments['linkAccessRestrictedPages']; $additionalParams = (array)$arguments['additionalParams']; $absolute = (bool)$arguments['absolute']; /** @var bool|string $addQueryString */ $addQueryString = $arguments['addQueryString']; $argumentsToBeExcludedFromQueryString = (array)$arguments['argumentsToBeExcludedFromQueryString']; /** @var string|null $action */ $action = $arguments['action']; /** @var string|null $controller */ $controller = $arguments['controller']; /** @var string|null $extensionName */ $extensionName = $arguments['extensionName']; /** @var string|null $pluginName */ $pluginName = $arguments['pluginName']; $actionArguments = (array)$arguments['arguments']; $allExtbaseArgumentsAreSet = ( is_string($extensionName) && $extensionName !== '' && is_string($pluginName) && $pluginName !== '' && is_string($controller) && $controller !== '' && is_string($action) && $action !== '' ); if (!$allExtbaseArgumentsAreSet) { throw new MissingArgumentException( 'ViewHelper f:link.action / f:uri.action needs either all extbase arguments set' . ' ("extensionName", "pluginName", "controller", "action")' . ' or needs a request implementing extbase RequestInterface.', 1690370264 ); } // Provide extbase default and custom arguments as prefixed additional params $extbaseArgumentNamespace = 'tx_' . str_replace('_', '', strtolower($extensionName)) . '_' . str_replace('_', '', strtolower($pluginName)); $additionalParams[$extbaseArgumentNamespace] = array_replace( [ 'controller' => $controller, 'action' => $action, ], $actionArguments ); $typolinkConfiguration = [ 'parameter' => $pageUid ?: 'current', ]; if ($pageType) { $typolinkConfiguration['parameter'] .= ',' . $pageType; } if ($language !== null) { $typolinkConfiguration['language'] = $language; } if ($noCache) { $typolinkConfiguration['no_cache'] = 1; } if ($section) { $typolinkConfiguration['section'] = $section; } if ($linkAccessRestrictedPages) { $typolinkConfiguration['linkAccessRestrictedPages'] = 1; } $typolinkConfiguration['queryParameters'] = $additionalParams; if ($absolute) { $typolinkConfiguration['forceAbsoluteUrl'] = true; } if ($addQueryString && $addQueryString !== 'false') { $typolinkConfiguration['addQueryString'] = $addQueryString; if ($argumentsToBeExcludedFromQueryString !== []) { $typolinkConfiguration['addQueryString.']['exclude'] = implode(',', $argumentsToBeExcludedFromQueryString); } } try { $cObj = GeneralUtility::makeInstance(ContentObjectRenderer::class); $cObj->setRequest($request); $linkFactory = GeneralUtility::makeInstance(LinkFactory::class); return $linkFactory->create($childContent, $typolinkConfiguration, $cObj); } catch (UnableToLinkException) { return null; } } /** * Only to be used by \TYPO3\CMS\Fluid\ViewHelpers\Link\ActionViewHelper * @internal */ public static function createUriWithExtbaseContext(ExtbaseRequestInterface $request, array $arguments): string { $format = $arguments['format']; $pageUid = (int)($arguments['pageUid'] ?? 0); $pageType = (int)$arguments['pageType']; $noCache = (bool)($arguments['noCache'] ?? false); $language = isset($arguments['language']) ? (string)$arguments['language'] : null; $section = $arguments['section']; $linkAccessRestrictedPages = (bool)$arguments['linkAccessRestrictedPages']; $additionalParams = (array)$arguments['additionalParams']; $absolute = (bool)$arguments['absolute']; /** @var bool|string $addQueryString */ $addQueryString = $arguments['addQueryString']; $argumentsToBeExcludedFromQueryString = (array)$arguments['argumentsToBeExcludedFromQueryString']; /** @var string|null $action */ $action = $arguments['action']; /** @var string|null $controller */ $controller = $arguments['controller']; /** @var string|null $extensionName */ $extensionName = $arguments['extensionName']; /** @var string|null $pluginName */ $pluginName = $arguments['pluginName']; $actionArguments = (array)$arguments['arguments']; $uriBuilder = GeneralUtility::makeInstance(ExtbaseUriBuilder::class); $uriBuilder ->reset() ->setRequest($request) ->setNoCache($noCache) ->setLanguage($language) ->setSection($section) ->setFormat($format) ->setLinkAccessRestrictedPages($linkAccessRestrictedPages) ->setArguments($additionalParams) ->setCreateAbsoluteUri($absolute); if ($addQueryString && $addQueryString !== 'false') { $uriBuilder ->setAddQueryString($addQueryString) ->setArgumentsToBeExcludedFromQueryString($argumentsToBeExcludedFromQueryString); } if ($pageUid > 0) { $uriBuilder->setTargetPageUid($pageUid); } if ($pageType > 0) { $uriBuilder->setTargetPageType($pageType); } return $uriBuilder->uriFor($action, $actionArguments, $controller, $extensionName, $pluginName); } }