update.schema.yml

Same filename and directory in other branches
  1. 11.x core/modules/update/config/schema/update.schema.yml
  2. 10 core/modules/update/config/schema/update.schema.yml
  3. 9 core/modules/update/config/schema/update.schema.yml
  4. 8.9.x core/modules/update/config/schema/update.schema.yml
core/modules/update/config/schema/update.schema.yml

File

core/modules/update/config/schema/update.schema.yml

View source
  1. # Schema for the configuration files of the Update Status module.
  2. update.settings:
  3. type: config_object
  4. label: 'Update settings'
  5. constraints:
  6. FullyValidatable: ~
  7. mapping:
  8. check:
  9. type: mapping
  10. label: 'Check settings'
  11. mapping:
  12. disabled_extensions:
  13. type: boolean
  14. label: 'Check for updates of uninstalled modules and themes'
  15. interval_days:
  16. type: integer
  17. label: 'Days since last check'
  18. constraints:
  19. # @see \Drupal\update\UpdateSettingsForm::buildForm()
  20. # The options are daily and weekly.
  21. Choice:
  22. choices: [1, 7]
  23. fetch:
  24. type: mapping
  25. label: 'Fetch settings'
  26. mapping:
  27. url:
  28. type: uri
  29. nullable: true
  30. label: 'URL for fetching available update data'
  31. max_attempts:
  32. type: integer
  33. label: 'Maximum attempts'
  34. constraints:
  35. Range:
  36. min: 1
  37. timeout:
  38. type: integer
  39. label: 'Timeout in seconds'
  40. constraints:
  41. Range:
  42. min: 1
  43. notification:
  44. type: mapping
  45. label: 'Notification settings'
  46. mapping:
  47. emails:
  48. type: sequence
  49. label: 'Email addresses to notify when updates are available'
  50. sequence:
  51. type: email
  52. label: 'Email'
  53. threshold:
  54. type: string
  55. label: 'Email notification threshold'
  56. constraints:
  57. # @see \Drupal\update\UpdateSettingsForm::buildForm()
  58. Choice:
  59. choices: [all, security]

Buggy or inaccurate documentation? Please file an issue. Need support? Need help programming? Connect with the Drupal community.