fm_elfinder.yaml 1.5 KB

12345678910111213141516171819202122232425262728293031
  1. fm_elfinder:
  2. assets_path: /chamilo_master/public/assets
  3. instances:
  4. default:
  5. locale: '%locale%' # defaults to current request locale
  6. editor: ckeditor # other options are tinymce, tinymce4, form, custom and simple
  7. fullscreen: true # defaults true, applies to simple and ckeditor editors
  8. theme: smoothness # jquery theme
  9. include_assets: true # disable if you want to handle loading of the javascript and css assets yourself
  10. connector:
  11. debug: false # defaults to false
  12. roots: # at least one root must be defined
  13. # uploads:
  14. # show_hidden: false # defaults to false
  15. # driver: LocalFileSystem
  16. # path: uploads
  17. # upload_allow: ['image/png', 'image/jpg', 'image/jpeg']
  18. # upload_deny: ['all']
  19. # upload_max_size: 2M
  20. local:
  21. driver: Flysystem
  22. path: uploads
  23. flysystem:
  24. type: local
  25. options:
  26. local:
  27. path: '%kernel.root_dir%/../public/uploads/media/'
  28. upload_allow: ['all']
  29. #upload_allow: ['image/png', 'image/jpg', 'image/jpeg']
  30. #upload_deny: ['all']
  31. upload_max_size: 2M