7d549ec0d6945a3e2f56812bbed0668a.yaml.php 2.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172
  1. <?php
  2. return [
  3. '@class' => 'Grav\\Common\\File\\CompiledYamlFile',
  4. 'filename' => '/var/www/html/user/plugins/markdown-notices/blueprints.yaml',
  5. 'modified' => 1591823175,
  6. 'data' => [
  7. 'name' => 'Markdown Notices',
  8. 'version' => '1.0.4',
  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_ADMIN.PLUGIN_STATUS',
  24. 'highlight' => 1,
  25. 'default' => 0,
  26. 'options' => [
  27. 1 => 'PLUGIN_ADMIN.ENABLED',
  28. 0 => 'PLUGIN_ADMIN.DISABLED'
  29. ],
  30. 'validate' => [
  31. 'type' => 'bool'
  32. ]
  33. ],
  34. 'built_in_css' => [
  35. 'type' => 'toggle',
  36. 'label' => 'PLUGIN_MARKDOWN_NOTICES.USE_BUILT_IN_CSS',
  37. 'highlight' => 1,
  38. 'default' => 1,
  39. 'options' => [
  40. 1 => 'PLUGIN_ADMIN.ENABLED',
  41. 0 => 'PLUGIN_ADMIN.DISABLED'
  42. ],
  43. 'validate' => [
  44. 'type' => 'bool'
  45. ]
  46. ],
  47. 'base_classes' => [
  48. 'type' => 'selectize',
  49. 'label' => 'PLUGIN_MARKDOWN_NOTICES.BASE_CLASSES',
  50. 'size' => 'large',
  51. 'placeholder' => 'PLUGIN_MARKDOWN_NOTICES.BASE_CLASSES_PLACEHOLDER',
  52. 'help' => 'PLUGIN_MARKDOWN_NOTICES.BASE_CLASSES_HELP',
  53. 'classes' => 'fancy',
  54. 'validate' => [
  55. 'type' => 'string'
  56. ]
  57. ],
  58. 'level_classes' => [
  59. 'type' => 'selectize',
  60. 'label' => 'PLUGIN_MARKDOWN_NOTICES.LEVEL_CLASSES',
  61. 'size' => 'large',
  62. 'placeholder' => 'PLUGIN_MARKDOWN_NOTICES.LEVEL_CLASSES_PLACEHOLDER',
  63. 'help' => 'PLUGIN_MARKDOWN_NOTICES.LEVEL_CLASSES_HELP',
  64. 'classes' => 'fancy',
  65. 'validate' => [
  66. 'type' => 'commalist'
  67. ]
  68. ]
  69. ]
  70. ]
  71. ]
  72. ];