You are here

editor.schema.yml in Drupal 8

Same filename and directory in other branches
  1. 9 core/modules/editor/config/schema/editor.schema.yml
core/modules/editor/config/schema/editor.schema.yml

File

core/modules/editor/config/schema/editor.schema.yml
View source
  1. # Schema for the configuration files of the Editor module.
  2. editor.editor.*:
  3. type: config_entity
  4. label: 'Text editor'
  5. mapping:
  6. format:
  7. type: string
  8. label: 'Name'
  9. editor:
  10. type: string
  11. label: 'Text editor'
  12. settings:
  13. type: editor.settings.[%parent.editor]
  14. image_upload:
  15. type: mapping
  16. label: 'Image upload settings'
  17. mapping:
  18. status:
  19. type: boolean
  20. label: 'Status'
  21. scheme:
  22. type: string
  23. label: 'File storage'
  24. directory:
  25. type: string
  26. label: 'Upload directory'
  27. max_size:
  28. type: string
  29. label: 'Maximum file size'
  30. max_dimensions:
  31. type: mapping
  32. label: 'Maximum dimensions'
  33. mapping:
  34. width:
  35. type: integer
  36. nullable: true
  37. label: 'Maximum width'
  38. height:
  39. type: integer
  40. nullable: true
  41. label: 'Maximum height'