beechit / default-upload-folder
Make it possible to configure the default upload folder for a certain TCA column
Installs: 11 845
Dependents: 0
Suggesters: 0
Security: 0
Stars: 8
Watchers: 3
Forks: 11
Open Issues: 1
Type:typo3-cms-extension
Requires
- typo3/cms-core: ^10.4
This package is auto-updated.
Last update: 2021-02-11 11:08:32 UTC
README
Make it possible to configure the default upload folder for a certain TCA column
How to use:
- Download form TER or require (
composer require beechit/default-upload-folder
) extension default_upload_folder - Install extension default_upload_folder via the extension manager
- Create the default folders (folder need to exists and editor needs to have access to the folder)
- Add configuration to pageTs
default_upload_folders {
# folder can be a combined identifier
tx_news_domain_model_news = 1:news
# Or a folder relative to the default upload folder of the user
tx_news_domain_model_news = news
# You can set a folder for the whole table of for a specific field of that table
tx_news_domain_model_news.fal_related_files = news_downloads
tx_news_domain_model_news.fal_media = news_media
# You can set a fallback for all tables
defaultForAllTables = 1:myDefaultUploadFolderForThisPartOfTheTree
}
Requirements:
TYPO3 10 LTS