Drupal 8.0.0 beta 12. More info: https://www.drupal.org/node/2514176
This commit is contained in:
commit
9921556621
13277 changed files with 1459781 additions and 0 deletions
43
core/modules/ckeditor/config/schema/ckeditor.schema.yml
Normal file
43
core/modules/ckeditor/config/schema/ckeditor.schema.yml
Normal file
|
@ -0,0 +1,43 @@
|
|||
# Schema for the configuration files of the CKEditor module.
|
||||
|
||||
editor.settings.ckeditor:
|
||||
type: mapping
|
||||
label: 'CKEditor settings'
|
||||
mapping:
|
||||
toolbar:
|
||||
type: mapping
|
||||
label: 'Toolbar configuration'
|
||||
mapping:
|
||||
rows:
|
||||
type: sequence
|
||||
label: 'Rows'
|
||||
sequence:
|
||||
type: sequence
|
||||
label: 'Button groups'
|
||||
sequence:
|
||||
type: mapping
|
||||
label: 'Button group'
|
||||
mapping:
|
||||
name:
|
||||
type: string
|
||||
label: 'Button group name'
|
||||
items:
|
||||
type: sequence
|
||||
label: 'Buttons'
|
||||
sequence:
|
||||
type: string
|
||||
label: 'Button'
|
||||
plugins:
|
||||
type: sequence
|
||||
label: 'Plugins'
|
||||
sequence:
|
||||
type: ckeditor.plugin.[%key]
|
||||
|
||||
# Plugin \Drupal\ckeditor\Plugin\ckeditor\plugin\StylesCombo
|
||||
ckeditor.plugin.stylescombo:
|
||||
type: mapping
|
||||
label: 'Styles dropdown'
|
||||
mapping:
|
||||
styles:
|
||||
type: string
|
||||
label: 'List of styles'
|
Reference in a new issue