sfroemken / fal_dropbox
Add a FAL driver for Dropbox to TYPO3
Installs: 24
Dependents: 0
Suggesters: 0
Security: 0
Stars: 23
Watchers: 7
Forks: 9
Open Issues: 1
Type:typo3-cms-extension
Requires
- kunalvarma05/dropbox-php-sdk: ^0.2
- typo3/cms-core: ^10.4
This package is auto-updated.
Last update: 2021-04-16 23:13:32 UTC
README
1 What does it do?
fal_dropbox is an Extension for TYPO3 >= 10.4.0. It extends FAL to show files from your dropbox account in file list module
2 Installation
Installation using Composer
The recommended way to install the extension is using Composer.
Run the following command within your Composer based TYPO3 project:
composer require sfroemken/fal_dropbox
Installation as extension from TER
Download and install fal_dropbox with the extension manager.
Setup
- Create a new file storage record on pid 0 called "Dropbox"
- On Tab "Configuration" choose "Dropbox". FlexForm reloads
- GoTo: https://www.dropbox.com/developers
- Choose "App console" on the left
- Click on button "Create app" on the upper right
- Choose "Dropbox API App"
- Now you can decide, if you want your app to work in its own folder. Or, if you want to have full access to all of your files
- Give it a name
- Save app with "Create App"
- After saving, you see your newly created App. Choose it.
- Click it and allow your app to connect to your dropbox account
3.) Have fun with FAL Dropbox
ToDo:
- rename folder
- delete folder
- it would be cool to remove all the big packages like oauth, HTTP_Request2 and so on
- I tried to change HTTP_Request with my own little Request-Object (fsockopen)
Done:
- you can create folders
- you can navigate through the folders
- move files
- copy files
- create references to tt_content records
- show image in popUp
- rename file
- creation of thumbs works
- copy files to upload folder
Stefan