2d1ebea5a920a6bcbc9dc7860dad7ae2.yaml.php 1.9 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253
  1. <?php
  2. return [
  3. '@class' => 'Grav\\Common\\File\\CompiledYamlFile',
  4. 'filename' => '/var/www/html/user/plugins/problems/blueprints.yaml',
  5. 'modified' => 1591823175,
  6. 'data' => [
  7. 'name' => 'Problems',
  8. 'version' => '2.0.3',
  9. 'description' => 'Detects and reports problems found in the site.',
  10. 'icon' => 'exclamation-circle',
  11. 'author' => [
  12. 'name' => 'Team Grav',
  13. 'email' => 'devs@getgrav.org',
  14. 'url' => 'http://getgrav.org'
  15. ],
  16. 'homepage' => 'https://github.com/getgrav/grav-plugin-problems',
  17. 'keywords' => 'problems, plugin, detector, assistant, required',
  18. 'bugs' => 'https://github.com/getgrav/grav-plugin-problems/issues',
  19. 'license' => 'MIT',
  20. 'form' => [
  21. 'validation' => 'strict',
  22. 'fields' => [
  23. 'enabled' => [
  24. 'type' => 'toggle',
  25. 'label' => 'PLUGIN_ADMIN.PLUGIN_STATUS',
  26. 'highlight' => 1,
  27. 'default' => 0,
  28. 'options' => [
  29. 1 => 'PLUGIN_ADMIN.ENABLED',
  30. 0 => 'PLUGIN_ADMIN.DISABLED'
  31. ],
  32. 'validate' => [
  33. 'type' => 'bool'
  34. ]
  35. ],
  36. 'built_in_css' => [
  37. 'type' => 'toggle',
  38. 'label' => 'PLUGIN_PROBLEMS.BUILTIN_CSS',
  39. 'help' => 'PLUGIN_PROBLEMS.BUILTIN_CSS_HELP',
  40. 'highlight' => 1,
  41. 'default' => 1,
  42. 'options' => [
  43. 1 => 'PLUGIN_ADMIN.ENABLED',
  44. 0 => 'PLUGIN_ADMIN.DISABLED'
  45. ],
  46. 'validate' => [
  47. 'type' => 'bool'
  48. ]
  49. ]
  50. ]
  51. ]
  52. ]
  53. ];