image.schema.yml

drupal/core/modules/image/config/schema/image.schema.yml

File

drupal/core/modules/image/config/schema/image.schema.yml
View source
  1. # Image module schema: image.schema.yml
  2. # Data types for image module.
  3. image.size:
  4. type: mapping
  5. mapping:
  6. width:
  7. type: integer
  8. label: 'Width'
  9. height:
  10. type: integer
  11. label: 'Height'
  12. # Image styles (multiple).
  13. # Plugin \Drupal\image\Plugin\Core\Entity\ImageStyle
  14. image.style.*:
  15. type: mapping
  16. label: 'Image style'
  17. mapping:
  18. name:
  19. type: string
  20. label:
  21. type: label
  22. effects:
  23. type: sequence
  24. sequence:
  25. - type: mapping
  26. mapping:
  27. name:
  28. type: string
  29. data:
  30. type: image.effect.[%parent.name]
  31. weight:
  32. type: integer
  33. ieid:
  34. type: string
  35. langcode:
  36. type: string
  37. label: 'Default language'
  38. # Image effects plugins: image.effect.%
  39. # These are used in image styles.
  40. image.effect.image_crop:
  41. type: image.size
  42. label: 'Image crop'
  43. mapping:
  44. anchor:
  45. label: 'Anchor'
  46. image.effect.image_resize:
  47. type: image.size
  48. label: 'Image resize'
  49. image.effect.image_rotate:
  50. type: mapping
  51. label: 'Image rotate'
  52. mapping:
  53. degrees:
  54. type: integer
  55. label: 'Rotation angle'
  56. bgcolor:
  57. label: 'Background color'
  58. random:
  59. type: boolean
  60. label: 'Randomize'
  61. image.effect.image_scale:
  62. type: image.size
  63. label: 'Image scale'
  64. mapping:
  65. upscale:
  66. type: boolean
  67. label: 'Upscale'
  68. image.effect.image_scale_and_crop:
  69. type: image.size
  70. label: 'Image scale and crop'
  71. # Schema for configuration files of image module.
  72. image.settings:
  73. type: mapping
  74. mapping:
  75. preview_image:
  76. type: string
  77. label: 'Preview image'