ralaper / filemanager-bundle
FileManager is a simple Multilingual File Manager Bundle for Symfony
Installs: 1
Dependents: 0
Suggesters: 0
Security: 0
Stars: 0
Watchers: 1
Forks: 89
Type:symfony-bundle
Requires
- php: ^7.1.3
- oomphinc/composer-installers-extender: ^1.1
- sensio/framework-extra-bundle: ^4.4|^5.0
- symfony/asset: ^4.4|^5.0
- symfony/event-dispatcher: ^4.4|^5.0
- symfony/expression-language: ^4.4|^5.0
- symfony/form: ^4.4|^5.0
- symfony/translation: ^4.4|^5.0
- symfony/twig-bridge: ^4.4|^5.0
- symfony/twig-bundle: ^4.4|^5.0
- symfony/validator: ^4.4|^5.0
Requires (Dev)
- symfony/browser-kit: ^4.4|^5.0
- symfony/css-selector: ^4.4|^5.0
- symfony/phpunit-bridge: ^4.3.5|^5.0
- symfony/security-bundle: ^4.4|^5.0
- symfony/templating: ^4.4|^5.0
- symfony/var-dumper: ^4.4|^5.0
- symfony/yaml: ^4.4|^5.0
- dev-master
- 2.2.1
- 2.2.0
- 2.1.1
- 2.1
- 2.0.2
- 2.0.1
- 2.0.0
- 1.x-dev
- 1.6.6
- 1.6.5
- 1.6.4
- 1.6.3
- 1.6.2
- 1.6.1
- 1.6
- 1.5.5
- 1.5.4
- 1.5.3
- 1.5.2
- 1.5.1
- 1.5
- 1.4.4
- 1.4.3
- 1.4.2
- 1.4.1
- 1.4
- 1.3.12
- 1.3.11
- 1.3.10
- 1.3.9
- 1.3.8
- 1.3.7
- 1.3.6
- 1.3.5
- 1.3.4
- 1.3.3
- 1.3.2
- 1.3.1
- 1.3
- 1.2.3
- 1.2.2
- 1.2.1
- 1.2
- 1.1.3
- 1.1.2
- 1.1.1
- 1.1.0
- 1.0.14
- 1.0.13
- 1.0.12
- 1.0.11
- 1.0.10
- 1.0.9
- 1.0.5
- 1.0.4
- 1.0.3
- 1.0.2
- 1.0.1
- 1.0.0
This package is not auto-updated.
Last update: 2024-12-26 05:31:19 UTC
README
FileManager is a simple Multilingual File Manager Bundle for Symfony
Features
- Upload, delete (multiple), rename, download and sort files
- Create, rename and delete folders
- Manage Public and Private folders
- Multilingual (English, French, Catalan, German, Spanish, Dutch, Portuguese, Romanian, Russian)
- Fully responsive design (bootstrap)
- Multilple view modes (list, thumbnail, with tree or not)
- Easy integration with Tinymce
- Preview images (even with a Private folder)
- Create multilple configurations
- Advanced configuration (ex : ACL, ...) with your own service
- File restriction based on patterns
- File Upload widget used : blueimp/jQuery-File-Upload
- Multiple uploads support
- Drag & Drop support
- Min/Max file size restriction
- Thumbnails generation
- Exhaustive options
- Compatible with FOSCKEditorBundle
Documentation
The Book
- Chapter 0 - Installation and your first File Manager
- Chapter 1 - Basic Configuration
- Chapter 2 - Service Configuration
- Chapter 3 - Access to the File Manager
- Chapter 4 - Security | Hide and/or block access to specific files or folders
Tutorials
- How to integrate FileManagerBundle into Tinymce
- How to integrate FileManagerBundle into FOSCKEditorBundle
- How to add a button that open the File manager to fill out an input field with the file URL
Installation
Step 1: Download the Bundle
$ composer require artgris/filemanager-bundle
Step 2: Load the Routes
# app/config/routing.yml artgris_bundle_file_manager: resource: "@ArtgrisFileManagerBundle/Controller" type: annotation prefix: /manager
Step 3: Enable the translator service
# app/config/config.yml framework: translator: { fallbacks: [ "en" ] }
Creating Your First File Manager
Create a folder uploads in public.
Add following configuration (symfony4) :
# app/config/config.yml artgris_file_manager: conf: default: dir: "../public/uploads"
Browse the /manager/?conf=default
URL and you'll get access to your
file manager
Run tests:
vendor/bin/phpunit
Demo Application
FileManagerDemo is a complete Symfony application (Symfony 4.4 and 5.0) created to showcase FileManagerBundle features.