---
title: "Feature: #78842 - Let FLUIDTEMPLATE mimic an actual extbase web request"
manual: "TYPO3 Core Changelog"
version: "main"
permalink: "https://docs.typo3.org/permalink/changelog:feature-78842"
source: "Changelog/8.5/Feature-78842-LetFluidtemplateMimicAnActualExtbaseWebRequest.rst"
modified: "2026-09-14T09:47:36+00:00"
---

# Feature: #78842 - Let FLUIDTEMPLATE mimic an actual extbase web request

See [forge#78842](https://forge.typo3.org/issues/78842)

## Description

Adds the possibility to let the FLUIDTEMPLATE content element mimic an
actual extbase web request.
This makes it possible to access submitted data like in extbase with
`->controllerContext->getRequest()->getArguments()`

## Impact

Data which was submitted through a `FLUIDTEMPLATE` content element are now
available within

```php
$view->getRenderingContext()
     ->getControllerContext()
     ->getRequest()
     ->getArguments()
```

## Affected Installations

Any installation which use the `FLUIDTEMPLATE` content element which are
initialized with the following settings:

```typoscript
extbase.pluginName
extbase.controllerExtensionName
extbase.controllerName
extbase.controllerActionName
```
