Feature: #96895 - Introduce Module data object
See forge#96895
Description
To further improve the handling of TYPO3 backend modules, the module
registration API, introduced in forge#96733, is extended by the new
\TYPO3\
object.
The
Module
object contains the user specific module settings,
e.g. whether the clipboard is shown, for the requested module. Those settings
are fetched from the users' session. A PSR-15 middleware does automatically
create the object from the stored user data and attach it to the PSR-7 Request.
Through the module registration one can define, which properties can
be overwritten via
GET
/
POST
and their default value.
The whole determination is done before the requested route target - usually a backend controller - is called. This means, the route target can just read the final module data and does no longer have to fiddle around with overwriting and persisting the data manually.
Previously, reading, overwriting and persisting of module data (settings) was done in the controller:
// Classes/Controller/MyController.php
$MOD_MENU = [
'allowedProperty' => '',
'anotherAllowedProperty' => true
];
$MOD_SETTINGS = BackendUtility::getModuleData(
$MOD_MENU,
$request->getParsedBody()['SET'] ?? $request->getQueryParams()['SET'] ?? [],
'my_module'
);
This is now automatically done by a new PSR-15 middleware. The "allowed" properties are defined with their default value in the module registration:
// Configuration/Backend/Modules.php
'moduleData' => [
'allowedProperty' => '',
'anotherAllowedProperty' => true,
],
// Classes/Controller/MyController.php
$MOD_SETTINGS = $request->getAttribute('moduleData');
The
Module
object provides the following methods:
Method | Parameters | Description |
---|---|---|
createFromModule() |
$module
$data | Create a new object for the given module, while
overwriting the default values with
$data . |
getModuleIdentifier() | Returns the related module identifier | |
get() |
$property
$default | Returns the value for
$property , or the
$default , if not set. |
set() |
$property
$value | Updates
$property with the given
$value . |
has() |
$property | Whether
$property exists. |
clean() |
$property
$allowed | Cleans a single property by the given allowed list and falls back to either the default value or the first allowed value. |
cleanUp() |
$allowed
$use | Cleans up all module data defined in the given
list of allowed data. Usually called with
$MOD_ in a controller with module menu. |
toArray() | Returns the module data as
array . |
In case a controller needs to store changed module data, this can still be done
using
$backend
.
Note
It's still possible to store and retrieve arbitrary module data. The
definition of
module
in the module registration only defines,
which properties can be overwritten in a request (with
GET
/
POST
).
To restrict the values of module data properties, the given
Module
object can be cleaned e.g. in a controller:
$allowedValues = ['foo', 'bar'];
$this->moduleData->clean('property', $allowedValues);
If
Module
contains
property
, the value is checked
against the
$allowed
list. If the current value is valid,
nothing happens. Otherwise the value is either changed to the default
or if this value is also not allowed, to the first allowed value.
Impact
The new
Module
object is available as new attribute of the
PSR-7 Request - in case a TYPO3 backend module is requested - and contains
the stored module data, which might have been overwritten through the current
request (with
GET
/
POST
).