Licitator 1.0
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

78 lines
3.2 KiB

5 years ago
  1. fm_elfinder:
  2. instances:
  3. form:
  4. locale: '%locale%' # defaults to current request locale
  5. editor: form # other choices are tinymce or simple, and form
  6. fullscreen: true # defaults true, applies to simple and ckeditor editors
  7. connector:
  8. debug: false # defaults to false
  9. roots: # at least one root must be defined
  10. uploads:
  11. driver: LocalFileSystem
  12. accepted_name: '/^[^\.].*/'
  13. path: uploads
  14. upload_allow: ['image/png', 'image/jpg', 'image/jpeg','image/svg+xml', 'text/plain', 'application/pdf']
  15. upload_deny: ['all']
  16. upload_max_size: 2M
  17. default:
  18. locale: "%locale%"
  19. editor: ckeditor
  20. connector:
  21. roots:
  22. uploads:
  23. driver: LocalFileSystem
  24. accepted_name: '/^[^\.].*/'
  25. path: uploads
  26. upload_allow: ['image/png', 'image/jpg', 'image/jpeg', 'image/svg+xml', 'text/plain', 'application/pdf']
  27. upload_deny: ['all']
  28. upload_max_size: 8M
  29. images:
  30. locale: "%locale%"
  31. editor: ckeditor
  32. connector:
  33. roots:
  34. uploads:
  35. driver: LocalFileSystem
  36. accepted_name: '/^[^\.].*/'
  37. path: uploads
  38. upload_allow: ['image/png', 'image/jpg', 'image/jpeg', 'image/svg+xml']
  39. upload_deny: ['all']
  40. upload_max_size: 8M
  41. news:
  42. locale: "%locale%"
  43. editor: ckeditor
  44. connector:
  45. roots:
  46. uploads:
  47. driver: LocalFileSystem
  48. accepted_name: '/^[^\.].*/'
  49. path: uploads/images/news
  50. upload_allow: ['image/png', 'image/jpg', 'image/jpeg', 'image/svg+xml', 'text/plain', 'application/pdf']
  51. upload_deny: ['all']
  52. upload_max_size: 8M
  53. convocatoria:
  54. locale: "%locale%"
  55. editor: ckeditor
  56. connector:
  57. roots:
  58. uploads:
  59. driver: LocalFileSystem
  60. accepted_name: '/^[^\.].*/'
  61. path: uploads/convocatorias
  62. upload_allow: ['image/png', 'image/jpg', 'image/jpeg', 'image/svg+xml', 'text/plain', 'application/pdf']
  63. upload_deny: ['all']
  64. upload_max_size: 8M
  65. dashboard:
  66. locale: "%locale%"
  67. editor: simple
  68. connector:
  69. debug: false
  70. roots:
  71. uploads:
  72. driver: LocalFileSystem
  73. accepted_name: '/^[^\.].*/'
  74. path: uploads
  75. upload_allow: ['text/plain', 'application/pdf']
  76. upload_deny: ['all']
  77. upload_max_size: 8M