TYPO3 v15 dev-main snapshot ()

This commit is contained in:
2026-08-10 22:31:09 +02:00
commit af8cc155b5
6818 changed files with 642608 additions and 0 deletions
@@ -0,0 +1,47 @@
.. include:: /Includes.rst.txt
.. _feature-78842:
=======================================================================
Feature: #78842 - Let FLUIDTEMPLATE mimic an actual extbase web request
=======================================================================
See :issue:`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
.. code-block:: php
$view->getRenderingContext()
->getControllerContext()
->getRequest()
->getArguments()
Affected Installations
======================
Any installation which use the `FLUIDTEMPLATE` content element which are
initialized with the following settings:
.. code-block:: typoscript
extbase.pluginName
extbase.controllerExtensionName
extbase.controllerName
extbase.controllerActionName
.. index:: Frontend, TypoScript, PHP-API