$html .= '<div id="' . $nameObject . '_customControls">';
foreach ($config['customControls'] as $customControlConfig) {
if (!isset($customControlConfig['userFunc'])) {
- trigger_error('Support for customControl without a userFunc key will be removed in TYPO3 v10.', E_USER_DEPRECATED);
$customControlConfig = [
'userFunc' => $customControlConfig
];
+++ /dev/null
-.. include:: ../../Includes.txt
-
-============================================================
-Deprecation: #83750 - Adapt TCA signature for customControls
-============================================================
-
-See :issue:`83750`
-
-Description
-===========
-
-According to the TCA documentation since TYPO3 v4.7, the definition of "customControls" for "inline" columns
-is as follows:
-
- Numerical array containing definitions of custom header controls for IRRE fields. This makes it possible to
- create special controls by calling user-defined functions (userFuncs). Each item in the array item must be
- an array itself, with at least on key "userFunc" pointing to the user function to call.
-
-The implementation instead relied on the userFunc string being provided as the key of the array.
-
-
-Impact
-======
-
-TCA definition for "inline" fields using custom header controls for IIRE fields will trigger a deprecation:
-
-.. code-block:: php
-
- 'some-column' => [
- 'config' => [
- 'type' => 'inline',
- // ...
- 'customControls' => [
- \Vendor\MyExtension\Tca\MyFirstCustomControl::class . '->render',
- \Vendor\MyExtension\Tca\MySecondCustomControl::class . '->render'
- ]
- ]
- ]
-
-
-Migration
-=========
-
-Update the TCA definition with a `userFunc` key for specifying the method to be called:
-
-.. code-block:: php
-
- 'some-column' => [
- 'config' => [
- 'type' => 'inline',
- // ...
- 'customControls' => [
- [
- 'userFunc' => \Vendor\MyExtension\Tca\MyFirstCustomControl::class . '->render'
- ],
- [
- 'userFunc' => \Vendor\MyExtension\Tca\MySecondCustomControl::class . '->render'
- ]
- ]
- ]
- ]
-
-
-.. index:: TCA, NotScanned, ext:core