4a771d4f04ec793561f40d96a904de19.yaml.php 2.1 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061
  1. <?php
  2. return [
  3. '@class' => 'Grav\\Common\\File\\CompiledYamlFile',
  4. 'filename' => '/home/kevin/Documents/Sites/hehe.net/user/plugins/markdown-notices/blueprints.yaml',
  5. 'modified' => 1533014916,
  6. 'data' => [
  7. 'name' => 'Markdown Notices',
  8. 'version' => '1.0.1',
  9. 'description' => 'Adds the ability to render notices blocks in Markdown',
  10. 'icon' => 'asterisk',
  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-markdown-notices',
  17. 'license' => 'MIT',
  18. 'form' => [
  19. 'validation' => 'strict',
  20. 'fields' => [
  21. 'enabled' => [
  22. 'type' => 'toggle',
  23. 'label' => 'Plugin status',
  24. 'highlight' => 1,
  25. 'default' => 0,
  26. 'options' => [
  27. 1 => 'Enabled',
  28. 0 => 'Disabled'
  29. ],
  30. 'validate' => [
  31. 'type' => 'bool'
  32. ]
  33. ],
  34. 'built_in_css' => [
  35. 'type' => 'toggle',
  36. 'label' => 'Use built in CSS',
  37. 'highlight' => 1,
  38. 'default' => 1,
  39. 'options' => [
  40. 1 => 'Enabled',
  41. 0 => 'Disabled'
  42. ],
  43. 'validate' => [
  44. 'type' => 'bool'
  45. ]
  46. ],
  47. 'level_classes' => [
  48. 'type' => 'selectize',
  49. 'size' => 'large',
  50. 'placeholder' => 'e.g. yellow, red, blue, green',
  51. 'label' => 'Level classes',
  52. 'help' => 'The classes to use for each level of notices depth',
  53. 'classes' => 'fancy',
  54. 'validate' => [
  55. 'type' => 'commalist'
  56. ]
  57. ]
  58. ]
  59. ]
  60. ]
  61. ];