2 declare(strict_types = 1);
23 use TYPO3Fluid\Fluid\Core\Rendering\RenderingContextInterface;
47 parent::initializeArguments();
48 $this->registerArgument(
'displayName',
'string',
'Name for the shortcut');
49 $this->registerArgument(
'getVars',
'array',
'List of additional GET variables to store. The current id, module and all module arguments will always be stored',
false, []);
54 $currentRequest = $renderingContext->getControllerContext()->getRequest();
55 $extensionName = $currentRequest->getControllerExtensionName();
56 $moduleName = $currentRequest->getPluginName();
57 $argumentPrefix = GeneralUtility::makeInstance(ObjectManager::class)
58 ->get(ExtensionService::class)
59 ->getPluginNamespace($extensionName, $moduleName);
61 $getVars = $arguments[
'getVars'];
62 $getVars[] = $argumentPrefix;
69 return $shortcutButton;