[!!!][FEATURE] Introduce TCA type "file"
In the process of using dedicated TCA types, the new TCA type "file" is introduced and replaces TCA type "inline" with "foreign_table" set to "sys_file_reference". The new type allows to remove a lot of cross dependencies and special cases for type "inline", in case the field is used in FAL context. Also DataHandler and friends benefit from this change, since dedicated functionality can be used now. It therefore effectively allows to improve FAL independently in the future. Due to the nature of "inline" a lot of code had to be copied for the new type, while changing the internal naming was not always easily possible. This will be done step by step with further patches. Besides the new TCA type also three new PSR-14 Events are introduced: - CustomFileControlsEvent - ModifyFileReferenceControlsEvent - ModifyFileReferenceEnabledControlsEvent While the ModifyFileReferenceControlsEvent and ModifyFileReferenceEnabledControlsEvent are equal to their inline counterparts does the CustomFileControlsEvent replace the "customControls" hook option, which is therefore only available for type "inline". Further notable changed: - Superfluous field "table_local" is removed from "sys_file_reference" - ExtensionManagementUtility::getFileFieldTCAConfig() is deprecated - Placeholders are introduced for common image/media/file types - File extension filtering is now done automatically in FormEngine and DataHandler Executed commands: composer u typo3/cms-styleguide Resolves: #98479 Releases: main Change-Id: Ie7a14e8cef444816d3c1844df43e6c0c93706d5d Reviewed-on: https://review.typo3.org/c/Packages/TYPO3.CMS/+/75916 Tested-by:core-ci <typo3@b13.com> Tested-by:
Jochen <rothjochen@gmail.com> Tested-by:
Benni Mack <benni@typo3.org> Reviewed-by:
Jochen <rothjochen@gmail.com> Reviewed-by:
Benni Mack <benni@typo3.org>
Showing
- Build/Sources/TypeScript/backend/form-engine-validation.ts 1 addition, 1 deletionBuild/Sources/TypeScript/backend/form-engine-validation.ts
- Build/Sources/TypeScript/backend/form-engine/container/files-control-container.ts 705 additions, 0 deletions.../backend/form-engine/container/files-control-container.ts
- Build/phpstan/phpstan-baseline.neon 0 additions, 5 deletionsBuild/phpstan/phpstan-baseline.neon
- composer.lock 5 additions, 5 deletionscomposer.lock
- typo3/sysext/backend/Classes/Backend/Avatar/DefaultAvatarProvider.php 0 additions, 4 deletions.../backend/Classes/Backend/Avatar/DefaultAvatarProvider.php
- typo3/sysext/backend/Classes/Controller/FormFilesAjaxController.php 531 additions, 0 deletions...xt/backend/Classes/Controller/FormFilesAjaxController.php
- typo3/sysext/backend/Classes/Controller/FormInlineAjaxController.php 1 addition, 20 deletions...t/backend/Classes/Controller/FormInlineAjaxController.php
- typo3/sysext/backend/Classes/ElementBrowser/ElementBrowserInterface.php 1 addition, 1 deletion...ackend/Classes/ElementBrowser/ElementBrowserInterface.php
- typo3/sysext/backend/Classes/Form/Container/FileReferenceContainer.php 551 additions, 0 deletions...backend/Classes/Form/Container/FileReferenceContainer.php
- typo3/sysext/backend/Classes/Form/Container/FilesControlContainer.php 431 additions, 0 deletions.../backend/Classes/Form/Container/FilesControlContainer.php
- typo3/sysext/backend/Classes/Form/Container/InlineControlContainer.php 27 additions, 121 deletions...backend/Classes/Form/Container/InlineControlContainer.php
- typo3/sysext/backend/Classes/Form/Container/InlineRecordContainer.php 27 additions, 133 deletions.../backend/Classes/Form/Container/InlineRecordContainer.php
- typo3/sysext/backend/Classes/Form/Event/CustomFileControlsEvent.php 109 additions, 0 deletions...xt/backend/Classes/Form/Event/CustomFileControlsEvent.php
- typo3/sysext/backend/Classes/Form/Event/ModifyFileReferenceControlsEvent.php 136 additions, 0 deletions...d/Classes/Form/Event/ModifyFileReferenceControlsEvent.php
- typo3/sysext/backend/Classes/Form/Event/ModifyFileReferenceEnabledControlsEvent.php 147 additions, 0 deletions...es/Form/Event/ModifyFileReferenceEnabledControlsEvent.php
- typo3/sysext/backend/Classes/Form/FieldControl/ElementBrowser.php 14 additions, 11 deletions...sext/backend/Classes/Form/FieldControl/ElementBrowser.php
- typo3/sysext/backend/Classes/Form/FieldWizard/DefaultLanguageDifferences.php 1 addition, 0 deletions...d/Classes/Form/FieldWizard/DefaultLanguageDifferences.php
- typo3/sysext/backend/Classes/Form/FieldWizard/OtherLanguageContent.php 1 addition, 0 deletions...backend/Classes/Form/FieldWizard/OtherLanguageContent.php
- typo3/sysext/backend/Classes/Form/FieldWizard/OtherLanguageThumbnails.php 1 addition, 1 deletion...kend/Classes/Form/FieldWizard/OtherLanguageThumbnails.php
- typo3/sysext/backend/Classes/Form/FormDataProvider/AbstractItemProvider.php 4 additions, 7 deletions...nd/Classes/Form/FormDataProvider/AbstractItemProvider.php
Please register or sign in to comment