TYPO3:将 maxitems = 1 添加到后端模块的图像选择

TYPO3: add maxitems = 1 to an image selection for a backend module

我使用以下代码在后端提供图像选择:
(TYPO3 docs - inline - File Abstraction Layer)

'image' => [
    'label' => 'LLL:EXT:lang/locallang_general.xlf:LGL.images',
    'config' => \TYPO3\CMS\Core\Utility\ExtensionManagementUtility::getFileFieldTCAConfig(
        'image',
        [
            'appearance' => [
                'createNewRelationLinkTitle' => 'LLL:EXT:cms/locallang_ttc.xlf:images.addFileReference'
            ],
            // custom configuration for displaying fields in the overlay/reference table
            // to use the image overlay palette instead of the basic overlay palette
            'overrideChildTca' => [
                'types' => [
                    '0' => [
                        'showitem' => '
                            --palette--;LLL:EXT:lang/locallang_tca.xlf:sys_file_reference.imageoverlayPalette;imageoverlayPalette,
                            --palette--;;filePalette'
                    ],
                    \TYPO3\CMS\Core\Resource\File::FILETYPE_TEXT => [
                        'showitem' => '
                            --palette--;LLL:EXT:lang/locallang_tca.xlf:sys_file_reference.imageoverlayPalette;imageoverlayPalette,
                            --palette--;;filePalette'
                    ],
                ],
            ],
        ],
        $GLOBALS['TYPO3_CONF_VARS']['GFX']['imagefile_ext']
    ),
],

我想将选择限制为 1 个项目,应该是:
TYPO3 dosc - maxitems option

image => [
    'config' => [
        'maxitems' => 1,
    ],
],

我找不到如何添加...我尝试的所有方法都出错

有时,您只需要找到文档的匹配部分...

File abstraction layer (FAL)

The API call is \TYPO3\CMS\Core\Utility\ExtensionManagementUtility::getFileFieldTCAConfig(). The first argument is the name of the current field, the second argument is an override configuration array, (...)

所以它应该通过以下方式覆盖生成的配置的一部分:

'image' => [
    'label' => 'LLL:EXT:lang/locallang_general.xlf:LGL.images',
    'config' => \TYPO3\CMS\Core\Utility\ExtensionManagementUtility::getFileFieldTCAConfig(
        'image',
        [
            'maxitems' => 1
        ]
    )
]