851172399ae4a00213d2adb5e407746b.yaml.php 2.0 KB

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