123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960 |
- <?php
- return [
- '@class' => 'Grav\\Common\\File\\CompiledYamlFile',
- 'filename' => '/mnt/data/Sites/static-ethica.net/user/plugins/markdown-notices/blueprints.yaml',
- 'modified' => 1520021428,
- 'data' => [
- 'name' => 'Markdown Notices',
- 'version' => '1.0.0',
- 'description' => 'Adds the ability to render notices blocks in Markdown',
- 'icon' => 'asterisk',
- 'author' => [
- 'name' => 'Team Grav',
- 'email' => 'devs@getgrav.org',
- 'url' => 'http://getgrav.org'
- ],
- 'license' => 'MIT',
- 'form' => [
- 'validation' => 'strict',
- 'fields' => [
- 'enabled' => [
- 'type' => 'toggle',
- 'label' => 'Plugin status',
- 'highlight' => 1,
- 'default' => 0,
- 'options' => [
- 1 => 'Enabled',
- 0 => 'Disabled'
- ],
- 'validate' => [
- 'type' => 'bool'
- ]
- ],
- 'built_in_css' => [
- 'type' => 'toggle',
- 'label' => 'Use built in CSS',
- 'highlight' => 1,
- 'default' => 1,
- 'options' => [
- 1 => 'Enabled',
- 0 => 'Disabled'
- ],
- 'validate' => [
- 'type' => 'bool'
- ]
- ],
- 'level_classes' => [
- 'type' => 'selectize',
- 'size' => 'large',
- 'placeholder' => 'e.g. yellow, red, blue, green',
- 'label' => 'Level classes',
- 'help' => 'The classes to use for each level of notices depth',
- 'classes' => 'fancy',
- 'validate' => [
- 'type' => 'commalist'
- ]
- ]
- ]
- ]
- ]
- ];
|