You are here

drupalmoduleupgrader.tags.yml in Drupal 7 to 8/9 Module Upgrader 8

config/install/drupalmoduleupgrader.tags.yml

File

config/install/drupalmoduleupgrader.tags.yml
View source
  1. # This file defines the tags available to analyzers when creating issues.
  2. # An issue can have any number of tags, and each tag consists of one or
  3. # more arbitrary values. The tags don't affect the analyzers internally,
  4. # but they can affect the output of the report generated by dmu-analyze
  5. # so that developers can peruse their modules' issues in various ways.
  6. #
  7. # See hasTag(), getTag(), setTag(), and clearTag() in IssueInterface.
  8. definitions:
  9. # Categories for issues. An issue can be in any number of categories.
  10. # Categories are tagged by their machine name, so that the human-readable
  11. # title is editable in one place (namely, here).
  12. category:
  13. block: 'Blocks'
  14. cache: 'Caching'
  15. config: 'Configuration'
  16. ctools: 'CTools'
  17. db: 'Database'
  18. entity: 'Entity API'
  19. field: 'Field API'
  20. form: 'Form API'
  21. info: 'Info File'
  22. menu: 'Menu/Routing'
  23. misc: 'Miscellaneous'
  24. node: 'Node API'
  25. render: 'Rendering'
  26. system: 'System'
  27. taxonomy: 'Taxonomy'
  28. theme: 'Theme System'
  29. ui: 'User Interface'
  30. user: 'Users'
  31. utility: 'Utilities'
  32. # Issue error levels. At the time of this writing, all this affects is
  33. # the CSS class of the issue as rendered in the report.
  34. error_level:
  35. - error
  36. - warning