diff --git a/core/modules/action/config/schema/views.field.schema.yml b/core/modules/action/config/schema/action.views.schema.yml similarity index 100% rename from core/modules/action/config/schema/views.field.schema.yml rename to core/modules/action/config/schema/action.views.schema.yml diff --git a/core/modules/action/tests/action_bulk_test/config/views.view.test_bulk_form.yml b/core/modules/action/tests/action_bulk_test/config/views.view.test_bulk_form.yml index d41ad41..222e6e7 100644 --- a/core/modules/action/tests/action_bulk_test/config/views.view.test_bulk_form.yml +++ b/core/modules/action/tests/action_bulk_test/config/views.view.test_bulk_form.yml @@ -125,13 +125,13 @@ display: provider: action filters: status: - value: 1 + value: true table: node_field_data field: status id: status expose: - operator: false - group: true + operator: '' + group: 1 plugin_id: boolean provider: views sorts: diff --git a/core/modules/aggregator/config/schema/aggregator.views.schema.yml b/core/modules/aggregator/config/schema/aggregator.views.schema.yml new file mode 100644 index 0000000..8858d77 --- /dev/null +++ b/core/modules/aggregator/config/schema/aggregator.views.schema.yml @@ -0,0 +1,2 @@ +# Schema for the views plugins of the Aggregator module. + diff --git a/core/modules/aggregator/config/views.view.aggregator_rss_feed.yml b/core/modules/aggregator/config/views.view.aggregator_rss_feed.yml index 2c72a39..2590960 100644 --- a/core/modules/aggregator/config/views.view.aggregator_rss_feed.yml +++ b/core/modules/aggregator/config/views.view.aggregator_rss_feed.yml @@ -42,7 +42,7 @@ display: id: 0 total_pages: 0 expose: - items_per_page: 0 + items_per_page: false items_per_page_label: 'Items per page' items_per_page_options: '5, 10, 20, 40, 60' items_per_page_options_all: false @@ -69,6 +69,7 @@ display: admin_label: '' label: 'Item ID' exclude: false + plugin_id: numeric alter: alter_text: false text: '' @@ -113,7 +114,7 @@ display: decimal: . separator: ',' format_plural: false - format_plural_singular: true + format_plural_singular: '1' format_plural_plural: '@count' prefix: '' suffix: '' diff --git a/core/modules/block/tests/modules/block_test/config/block.block.test_block.yml b/core/modules/block/tests/modules/block_test/config/block.block.test_block.yml index 49ef788..bb65174 100644 --- a/core/modules/block/tests/modules/block_test/config/block.block.test_block.yml +++ b/core/modules/block/tests/modules/block_test/config/block.block.test_block.yml @@ -1,15 +1,15 @@ id: test_block theme: stark -weight: '' +weight: 0 status: true langcode: en -region: -1 +region: '-1' plugin: test_html_id settings: label: 'Test block html id' module: block_test - label_display: false - cache: true + label_display: 'hidden' + cache: 1 visibility: path: visibility: 0 diff --git a/core/modules/comment/config/entity.view_mode.comment.full.yml b/core/modules/comment/config/entity.view_mode.comment.full.yml index f3ce7fc..9f99609 100644 --- a/core/modules/comment/config/entity.view_mode.comment.full.yml +++ b/core/modules/comment/config/entity.view_mode.comment.full.yml @@ -1,6 +1,6 @@ id: comment.full uuid: 06ab5b16-e197-4242-b72c-4453793fabba -label: Full comment +label: 'Full comment' status: false cache: true targetEntityType: comment diff --git a/core/modules/comment/config/views.view.comments_recent.yml b/core/modules/comment/config/views.view.comments_recent.yml index 7650bf4..cd30d45 100644 --- a/core/modules/comment/config/views.view.comments_recent.yml +++ b/core/modules/comment/config/views.view.comments_recent.yml @@ -11,7 +11,7 @@ display: position: 0 display_options: block_description: 'Recent comments' - block_category: Lists (Views) + block_category: 'Lists (Views)' default: display_plugin: default id: default @@ -110,7 +110,7 @@ display: empty_zero: false hide_alter_empty: true link_to_comment: true - link_to_node: false + link_to_entity: false changed: id: changed table: comment @@ -171,7 +171,7 @@ display: id: status plugin_id: boolean expose: - operator: false + operator: '' group: 1 status_node: value: true @@ -181,7 +181,7 @@ display: id: status_node plugin_id: boolean expose: - operator: false + operator: '' group: 1 sorts: created: @@ -208,7 +208,6 @@ display: expose: label: '' plugin_id: standard - title: 'Recent comments' empty: area_text_custom: id: area_text_custom diff --git a/core/modules/comment/tests/modules/comment_test_views/test_views/views.view.test_comment_row.yml b/core/modules/comment/tests/modules/comment_test_views/test_views/views.view.test_comment_row.yml index 538a486..9f3d6b0 100644 --- a/core/modules/comment/tests/modules/comment_test_views/test_views/views.view.test_comment_row.yml +++ b/core/modules/comment/tests/modules/comment_test_views/test_views/views.view.test_comment_row.yml @@ -43,7 +43,7 @@ display: id: 0 total_pages: '' expose: - items_per_page: 0 + items_per_page: false items_per_page_label: 'Items per page' items_per_page_options: 5, 10, 20, 40, 60 items_per_page_options_all: 0 diff --git a/core/modules/config/lib/Drupal/config/Tests/DefaultConfigTest.php b/core/modules/config/lib/Drupal/config/Tests/DefaultConfigTest.php index 83807bc..9b9d5c1 100644 --- a/core/modules/config/lib/Drupal/config/Tests/DefaultConfigTest.php +++ b/core/modules/config/lib/Drupal/config/Tests/DefaultConfigTest.php @@ -62,6 +62,12 @@ public function testDefaultConfig() { if (strpos($config_name, 'migrate.migration') === 0 || strpos($config_name, 'locale.config') === 0) { continue; } + // config_test.noschema has to be skipped as it tests + // TypedConfigManagerInterface::hasConfigSchema() method. + if ($config_name == 'config_test.noschema') { + continue; + } + $this->configName = $config_name; $data = $default_config_storage->read($config_name); if (!$typed_config->hasConfigSchema($config_name)) { diff --git a/core/modules/config/tests/config_integration_test/config/schema/config_integration_test.schema.yml b/core/modules/config/tests/config_integration_test/config/schema/config_integration_test.schema.yml new file mode 100644 index 0000000..5010f01 --- /dev/null +++ b/core/modules/config/tests/config_integration_test/config/schema/config_integration_test.schema.yml @@ -0,0 +1,9 @@ +# Schema for the configuration files of the Configuration Integration Test module. + +config_integration_test.settings: + type: mapping + label: 'Configuration integration test settings' + mapping: + foo: + type: string + label: 'Foo' diff --git a/core/modules/config/tests/config_test/config/schema/config_test.schema.yml b/core/modules/config/tests/config_test/config/schema/config_test.schema.yml index 597e9f7..e421963 100644 --- a/core/modules/config/tests/config_test/config/schema/config_test.schema.yml +++ b/core/modules/config/tests/config_test/config/schema/config_test.schema.yml @@ -1,74 +1,81 @@ +# Schema for the configuration files of the Configuration Test module. + config_test.someschema: type: mapping - label: "Schema test data" + label: 'Schema test data' mapping: - "testitem": - label: "Test item" - "testlist": - label: "Test list" + testitem: + type: text + label: 'Test item' + testlist: + type: sequence + label: 'Test list' + sequence: + - type: text + label: 'Test' config_test.someschema.with_parents: - label: "Schema test data with parenting" + label: 'Schema test data with parenting' type: mapping mapping: one_level: - label: "Parenting one level up" + label: 'Parenting one level up' type: mapping mapping: target_key: - label: "Key used in parent relation" + label: 'Key used in parent relation' type: string testitem: type: config_test.someschema.with_parents.[%parent.target_key] two_levels: - label: "Parenting two levels up" + label: 'Parenting two levels up' type: mapping mapping: target_key: - label: "Key used in parent relation" + label: 'Key used in parent relation' type: string wrapper: - label: "Wrapper" + label: 'Wrapper' type: mapping mapping: testitem: type: config_test.someschema.with_parents.[%parent.%parent.target_key] three_levels: - label: "Parenting three levels up" + label: 'Parenting three levels up' type: mapping mapping: target_key: - label: "Key used in parent relation" + label: 'Key used in parent relation' type: string wrapper_1: - label: "Wrapper 1" + label: 'Wrapper 1' type: mapping mapping: wrapper_2: - label: "Wrapper 2" + label: 'Wrapper 2' type: mapping mapping: testitem: type: config_test.someschema.with_parents.[%parent.%parent.%parent.target_key] config_test.someschema.with_parents.key_1: - label: "Test item nested one level" + label: 'Test item nested one level' type: string config_test.someschema.with_parents.key_2: - label: "Test item nested two levels" + label: 'Test item nested two levels' type: string config_test.someschema.with_parents.key_3: - label: "Test item nested three levels" + label: 'Test item nested three levels' type: string config_test.someschema.somemodule.*.*: type: mapping label: 'Schema multiple filesytem marker test' mapping: - id: + testid: type: string label: 'ID' - description: + testdescription: type: text label: 'Description' @@ -131,3 +138,93 @@ config_test.schema_data_types: type: sequence sequence: - type: boolean + +config_test_dynamic: + type: mapping + mapping: + id: + type: string + label: 'ID' + uuid: + type: string + label: 'UUID' + label: + type: label + label: 'Label' + weight: + type: integer + label: 'Weight' + style: + type: string + label: 'style' + status: + type: boolean + label: 'Status' + langcode: + type: string + label: 'Default language' + protected_property: + type: string + label: 'Protected property' + +config_test.dynamic.*: + type: config_test_dynamic + label: 'Config test dynamic settings' + +config_test.dynamic.*.*: + type: config_test_dynamic + label: 'Config test dynamic settings' + +config_test.types: + type: mapping + label: 'Configuration type' + mapping: + array: + type: mapping + label: 'Array' + boolean: + type: boolean + label: 'Boolean' + float: + type: float + label: 'Float' + exp: + type: float + label: 'Exponential' + hex: + type: integer + label: 'Hexadecimal' + int: + type: integer + label: 'Integer' + octal: + type: integer + label: 'Octal' + string: + type: string + label: 'String' + string_int: + type: string + label: 'String integer' + +config_test.no_status.default: + type: mapping + label: 'Configuration no status default' + mapping: + id: + type: string + label: 'ID' + label: + type: label + label: 'Label' + +config_test.system: + type: mapping + label: 'Configuration system' + mapping: + foo: + type: string + label: 'Foo' + '404': + type: string + label: '404' diff --git a/core/modules/config/tests/config_test_invalid_name/config/schema/config_test_invalid_name.schema.yml b/core/modules/config/tests/config_test_invalid_name/config/schema/config_test_invalid_name.schema.yml new file mode 100644 index 0000000..1f541b1 --- /dev/null +++ b/core/modules/config/tests/config_test_invalid_name/config/schema/config_test_invalid_name.schema.yml @@ -0,0 +1,9 @@ +# Schema for the configuration files of the Invalid Configuration Name module. + +invalid_object_name: + type: mapping + label: 'Invalid configuration' + mapping: + frittata: + type: string + label: 'String' diff --git a/core/modules/contact/tests/modules/contact_test_views/test_views/views.view.test_contact_link.yml b/core/modules/contact/tests/modules/contact_test_views/test_views/views.view.test_contact_link.yml index b516661..1771823 100644 --- a/core/modules/contact/tests/modules/contact_test_views/test_views/views.view.test_contact_link.yml +++ b/core/modules/contact/tests/modules/contact_test_views/test_views/views.view.test_contact_link.yml @@ -44,7 +44,7 @@ display: id: 0 total_pages: '' expose: - items_per_page: 0 + items_per_page: false items_per_page_label: 'Items per page' items_per_page_options: 5, 10, 20, 40, 60 items_per_page_options_all: false diff --git a/core/modules/entity_reference/config/schema/entity_reference.views.schema.yml b/core/modules/entity_reference/config/schema/entity_reference.views.schema.yml new file mode 100644 index 0000000..bae8e7a --- /dev/null +++ b/core/modules/entity_reference/config/schema/entity_reference.views.schema.yml @@ -0,0 +1,17 @@ +# Schema for the views plugins of the Entity Reference module. + +views.display.entity_reference: + type: views_display + label: 'Entity Reference' + +views.row.entity_reference: + type: views.row.fields + label: 'Entity Reference inline fields' + +views.style.entity_reference: + type: views.row.fields + label: 'Entity Reference list' + mapping: + search_fields: + type: boolean + label: 'Search fields' diff --git a/core/modules/entity_reference/tests/modules/entity_reference_test/config/views.view.test_entity_reference.yml b/core/modules/entity_reference/tests/modules/entity_reference_test/config/views.view.test_entity_reference.yml index 7f46a31..d85f803 100644 --- a/core/modules/entity_reference/tests/modules/entity_reference_test/config/views.view.test_entity_reference.yml +++ b/core/modules/entity_reference/tests/modules/entity_reference_test/config/views.view.test_entity_reference.yml @@ -56,6 +56,7 @@ display: expose: operator: 0 group: true + plugin_id: boolean provider: views sorts: created: @@ -63,6 +64,7 @@ display: table: node_field_data field: created order: DESC + plugin_id: date provider: views entity_reference_1: display_plugin: entity_reference diff --git a/core/modules/field/config/schema/field.schema.yml b/core/modules/field/config/schema/field.schema.yml index ea78214..42db948 100644 --- a/core/modules/field/config/schema/field.schema.yml +++ b/core/modules/field/config/schema/field.schema.yml @@ -107,6 +107,26 @@ field.instance.*.*.*: entity_type: type: string label: 'Entity type' + widget: + type: mapping + label: 'Field instance' + mapping: + weight: + type: integer + label: 'Weight' + type: + type: string + label: 'Type' + module: + type: string + label: 'Module' + settings: + type: mapping + label: 'Settings' + mapping: + size: + type: integer + label: 'Size' entity_form_display.field.hidden: type: entity_field_form_display_base diff --git a/core/modules/file/config/views.view.files.yml b/core/modules/file/config/views.view.files.yml index c427f1d..4ca01a4 100644 --- a/core/modules/file/config/views.view.files.yml +++ b/core/modules/file/config/views.view.files.yml @@ -544,7 +544,7 @@ display: optional: true widget: select multiple: false - remember: 0 + remember: false default_group: All default_group_multiple: { } group_items: { } @@ -582,7 +582,7 @@ display: optional: true widget: select multiple: false - remember: 0 + remember: false default_group: All default_group_multiple: { } group_items: { } @@ -621,7 +621,7 @@ display: optional: true widget: select multiple: false - remember: 0 + remember: false default_group: All default_group_multiple: { } group_items: { } @@ -928,7 +928,7 @@ display: decimal: . separator: ',' format_plural: false - format_plural_singular: true + format_plural_singular: '1' format_plural_plural: '@count' prefix: '' suffix: '' diff --git a/core/modules/forum/tests/modules/forum_test_views/test_views/views.view.test_forum_index.yml b/core/modules/forum/tests/modules/forum_test_views/test_views/views.view.test_forum_index.yml index 3c385ae..4edfdff 100644 --- a/core/modules/forum/tests/modules/forum_test_views/test_views/views.view.test_forum_index.yml +++ b/core/modules/forum/tests/modules/forum_test_views/test_views/views.view.test_forum_index.yml @@ -137,7 +137,7 @@ display: decimal: . separator: ',' format_plural: false - format_plural_singular: true + format_plural_singular: '1' format_plural_plural: '@count' prefix: '' suffix: '' diff --git a/core/modules/node/config/entity.view_mode.node.full.yml b/core/modules/node/config/entity.view_mode.node.full.yml index dd5d3f4..c944eb9 100644 --- a/core/modules/node/config/entity.view_mode.node.full.yml +++ b/core/modules/node/config/entity.view_mode.node.full.yml @@ -1,6 +1,6 @@ id: node.full uuid: faa8c4b0-64a5-458e-8e03-3ae4b4daee5b -label: Full content +label: 'Full content' status: false cache: true targetEntityType: node diff --git a/core/modules/node/config/schema/node.schema.yml b/core/modules/node/config/schema/node.schema.yml index 88a6849..07c69f2 100644 --- a/core/modules/node/config/schema/node.schema.yml +++ b/core/modules/node/config/schema/node.schema.yml @@ -95,27 +95,27 @@ action.configuration.node_assign_owner_action: owner_uid: type: text label: 'Username' - + action.configuration.node_unpromote_action: type: action_configuration_default label: 'Demote selected content from front page configuration' - + action.configuration.node_promote_action: type: action_configuration_default label: 'Promote selected content from front page configuration' - + action.configuration.node_publish_action: type: action_configuration_default label: 'Publish selected content configuration' - + action.configuration.node_save_action: type: action_configuration_default label: 'save content configuration' - + action.configuration.node_make_sticky_action: type: action_configuration_default label: 'Make selected content sticky configuration' - + action.configuration.node_unpublish_by_keyword_action: type: mapping label: 'Unpublish content containing keyword(s) configuration' @@ -126,11 +126,11 @@ action.configuration.node_unpublish_by_keyword_action: sequence: - type: sequence label: 'Keyword' - + action.configuration.node_unpublish_action: type: action_configuration_default label: 'Unpublish selected content configuration' - + action.configuration.node_unsticky_action: type: action_configuration_default label: 'Publish selected content not sticky configuration' diff --git a/core/modules/node/config/views.view.content.yml b/core/modules/node/config/views.view.content.yml index 643782f..47ced97 100644 --- a/core/modules/node/config/views.view.content.yml +++ b/core/modules/node/config/views.view.content.yml @@ -163,7 +163,7 @@ display: hide_empty: false empty_zero: false hide_alter_empty: true - link_to_node: '1' + link_to_node: true plugin_id: node provider: node type: @@ -361,7 +361,7 @@ display: group_type: group admin_label: '' operator: '=' - value: All + value: true group: 1 exposed: true expose: diff --git a/core/modules/node/config/views.view.frontpage.yml b/core/modules/node/config/views.view.frontpage.yml index 3e0e211..6e58b4a 100644 --- a/core/modules/node/config/views.view.frontpage.yml +++ b/core/modules/node/config/views.view.frontpage.yml @@ -95,7 +95,7 @@ display: operator: '=' relationship: none table: node_field_data - value: 1 + value: true plugin_id: boolean provider: views status: @@ -105,7 +105,7 @@ display: group: 1 id: status table: node_field_data - value: 1 + value: true plugin_id: boolean provider: views pager: @@ -128,7 +128,7 @@ display: next: 'next ›' first: '« first' last: 'last »' - quantity: '9' + quantity: 9 query: type: views_query options: diff --git a/core/modules/node/tests/modules/node_test_views/test_views/views.view.test_contextual_links.yml b/core/modules/node/tests/modules/node_test_views/test_views/views.view.test_contextual_links.yml index 2615065..588d0cc 100644 --- a/core/modules/node/tests/modules/node_test_views/test_views/views.view.test_contextual_links.yml +++ b/core/modules/node/tests/modules/node_test_views/test_views/views.view.test_contextual_links.yml @@ -16,47 +16,47 @@ display: pager: type: full options: - items_per_page: '10' - offset: '0' - id: '0' + items_per_page: 10 + offset: 0 + id: 0 total_pages: '' expose: - items_per_page: '0' + items_per_page: false items_per_page_label: 'Items per page' items_per_page_options: '5, 10, 20, 40, 60' items_per_page_options_all: '0' items_per_page_options_all_label: '- All -' - offset: '0' + offset: false offset_label: Offset tags: previous: '‹ previous' next: 'next ›' first: '« first' last: 'last »' - quantity: '9' + quantity: 9 query: type: views_query options: - disable_sql_rewrite: '0' - distinct: '0' - slave: '0' + disable_sql_rewrite: false + distinct: false + slave: false query_comment: '' query_tags: { } row: type: 'entity:node' options: build_mode: teaser - comments: '0' - links: '1' + comments: false + links: true view_mode: teaser style: type: default options: grouping: { } row_class: '' - default_row_class: '1' - row_class_special: '1' - uses_fields: '0' + default_row_class: true + row_class_special: pager: + uses_fields: false title: '' header: { } footer: { } @@ -85,8 +85,8 @@ display: title: 'Test contextual link' description: '' name: tools - weight: '0' - context: '1' + weight: 0 + context: true display_plugin: page display_title: Page id: page_1 diff --git a/core/modules/node/tests/modules/node_test_views/test_views/views.view.test_node_row_plugin.yml b/core/modules/node/tests/modules/node_test_views/test_views/views.view.test_node_row_plugin.yml index e7bae25..84b9a57 100644 --- a/core/modules/node/tests/modules/node_test_views/test_views/views.view.test_node_row_plugin.yml +++ b/core/modules/node/tests/modules/node_test_views/test_views/views.view.test_node_row_plugin.yml @@ -2,7 +2,7 @@ base_field: nid base_table: node core: 8 description: '' -status: '1' +status: true display: default: display_options: @@ -15,25 +15,25 @@ display: filters: status: expose: - operator: '0' + operator: '' field: status - group: '1' + group: 1 id: status table: node - value: '1' + value: true plugin_id: boolean provider: views pager: options: - items_per_page: '10' + items_per_page: 10 type: full query: type: views_query row: options: build_mode: teaser - comments: '0' - links: '1' + comments: false + links: true type: 'entity:node' sorts: { } style: diff --git a/core/modules/node/tests/modules/node_test_views/test_views/views.view.test_node_view.yml b/core/modules/node/tests/modules/node_test_views/test_views/views.view.test_node_view.yml index b1a8931..a3c1f80 100644 --- a/core/modules/node/tests/modules/node_test_views/test_views/views.view.test_node_view.yml +++ b/core/modules/node/tests/modules/node_test_views/test_views/views.view.test_node_view.yml @@ -45,24 +45,24 @@ display: pager: type: full options: - items_per_page: '10' - offset: '0' - id: '0' + items_per_page: 10 + offset: 0 + id: 0 total_pages: '' expose: - items_per_page: '0' + items_per_page: false items_per_page_label: 'Items per page' items_per_page_options: '5, 10, 20, 40, 60' items_per_page_options_all: '0' items_per_page_options_all_label: '- All -' - offset: '0' + offset: false offset_label: Offset tags: previous: '‹ previous' next: 'next ›' first: '« first' last: 'last »' - quantity: '9' + quantity: 9 style: type: default row: @@ -76,58 +76,58 @@ display: group_type: group admin_label: '' label: Nid - exclude: '0' + exclude: false alter: - alter_text: '0' + alter_text: false text: '' - make_link: '0' + make_link: false path: '' - absolute: '0' - external: '0' - replace_spaces: '0' + absolute: false + external: false + replace_spaces: false path_case: none - trim_whitespace: '0' + trim_whitespace: false alt: '' rel: '' link_class: '' prefix: '' suffix: '' target: '' - nl2br: '0' + nl2br: false max_length: '' - word_boundary: '1' - ellipsis: '1' - more_link: '0' + word_boundary: true + ellipsis: true + more_link: false more_link_text: '' more_link_path: '' - strip_tags: '0' - trim: '0' + strip_tags: false + trim: false preserve_tags: '' - html: '0' + html: false element_type: '' element_class: '' element_label_type: '' element_label_class: '' - element_label_colon: '1' + element_label_colon: true element_wrapper_type: '' element_wrapper_class: '' - element_default_classes: '1' + element_default_classes: true empty: '' - hide_empty: '0' - empty_zero: '0' - hide_alter_empty: '1' - link_to_node: '0' + hide_empty: false + empty_zero: false + hide_alter_empty: true + link_to_node: false plugin_id: node provider: node filters: status: - value: '1' + value: true table: node_field_data field: status id: status expose: - operator: '0' - group: '1' + operator: '' + group: 1 provider: views sorts: created: @@ -138,7 +138,7 @@ display: relationship: none group_type: group admin_label: '' - exposed: '0' + exposed: false expose: label: '' granularity: second @@ -159,34 +159,34 @@ display: default_action: 'not found' exception: value: all - title_enable: '0' + title_enable: false title: All - title_enable: '0' + title_enable: false title: '' default_argument_type: fixed default_argument_options: argument: '' - default_argument_skip_url: '0' + default_argument_skip_url: false summary_options: base_path: '' - count: '1' - items_per_page: '25' - override: '0' + count: true + items_per_page: 25 + override: false summary: sort_order: asc - number_of_records: '0' + number_of_records: false format: default_summary - specify_validation: '0' + specify_validation: false validate: type: none fail: 'not found' validate_options: { } - glossary: '0' - limit: '0' + glossary: false + limit: false case: none path_case: none - transform_dash: '0' - break_phrase: '0' + transform_dash: false + break_phrase: false plugin_id: node_type provider: node label: test_node_view diff --git a/core/modules/node/tests/modules/node_test_views/test_views/views.view.test_status_extra.yml b/core/modules/node/tests/modules/node_test_views/test_views/views.view.test_status_extra.yml index 2590855..ec77a6a 100644 --- a/core/modules/node/tests/modules/node_test_views/test_views/views.view.test_status_extra.yml +++ b/core/modules/node/tests/modules/node_test_views/test_views/views.view.test_status_extra.yml @@ -34,47 +34,47 @@ display: group_type: group admin_label: '' label: Title - exclude: '0' + exclude: false alter: - alter_text: '0' + alter_text: false text: '' - make_link: '0' + make_link: false path: '' - absolute: '0' - external: '0' - replace_spaces: '0' + absolute: false + external: false + replace_spaces: false path_case: none - trim_whitespace: '0' + trim_whitespace: false alt: '' rel: '' link_class: '' prefix: '' suffix: '' target: '' - nl2br: '0' + nl2br: false max_length: '' - word_boundary: '1' - ellipsis: '1' - more_link: '0' + word_boundary: true + ellipsis: true + more_link: false more_link_text: '' more_link_path: '' - strip_tags: '0' - trim: '0' + strip_tags: false + trim: false preserve_tags: '' - html: '0' + html: false element_type: '' element_class: '' element_label_type: '' element_label_class: '' - element_label_colon: '1' + element_label_colon: true element_wrapper_type: '' element_wrapper_class: '' - element_default_classes: '1' + element_default_classes: true empty: '' - hide_empty: '0' - empty_zero: '0' - hide_alter_empty: '1' - link_to_node: '0' + hide_empty: false + empty_zero: false + hide_alter_empty: true + link_to_node: false plugin_id: node provider: node filters: @@ -87,29 +87,29 @@ display: admin_label: '' operator: '=' value: '' - group: '1' - exposed: '0' + group: 1 + exposed: false expose: - operator_id: '0' + operator_id: 0 label: '' description: '' - use_operator: '0' + use_operator: false operator: '' identifier: '' - required: '0' - remember: '0' - multiple: '0' + required: false + remember: false + multiple: false remember_roles: authenticated: authenticated - is_grouped: '0' + is_grouped: false group_info: label: '' description: '' identifier: '' - optional: '1' + optional: true widget: select - multiple: '0' - remember: '0' + multiple: false + remember: false default_group: All default_group_multiple: { } group_items: { } @@ -135,6 +135,6 @@ display: id: page_1 position: 0 base_field: nid -status: '1' +status: true module: views langcode: und diff --git a/core/modules/search/config/entity.view_mode.node.search_index.yml b/core/modules/search/config/entity.view_mode.node.search_index.yml index 90df0bd..f0b4251 100644 --- a/core/modules/search/config/entity.view_mode.node.search_index.yml +++ b/core/modules/search/config/entity.view_mode.node.search_index.yml @@ -1,6 +1,6 @@ id: node.search_index uuid: 17b34a6b-401f-421a-8100-f1879cbc565a -label: Search index +label: 'Search index' status: false cache: true targetEntityType: node diff --git a/core/modules/search/config/entity.view_mode.node.search_result.yml b/core/modules/search/config/entity.view_mode.node.search_result.yml index cfdc1ac..fe37d00 100644 --- a/core/modules/search/config/entity.view_mode.node.search_result.yml +++ b/core/modules/search/config/entity.view_mode.node.search_result.yml @@ -1,6 +1,6 @@ id: node.search_result uuid: 095d7357-de7d-4acc-953a-585cd106e89b -label: Search result +label: 'Search result' status: false cache: true targetEntityType: node diff --git a/core/modules/search/tests/modules/search_extra_type/config/schema/search_extra_type.schema.yml b/core/modules/search/tests/modules/search_extra_type/config/schema/search_extra_type.schema.yml index b546e84..de7226e 100644 --- a/core/modules/search/tests/modules/search_extra_type/config/schema/search_extra_type.schema.yml +++ b/core/modules/search/tests/modules/search_extra_type/config/schema/search_extra_type.schema.yml @@ -2,11 +2,11 @@ search_extra_type.settings: type: mapping - label: 'Test search type settings' - mapping: - boost: - type: string - label: 'String' + label: 'Test search type settings' + mapping: + boost: + type: string + label: 'String' # Plugin \Drupal\search_extra_type\Plugin\Search\SearchExtraTypeSearch search.plugin.search_extra_type_search: diff --git a/core/modules/statistics/tests/modules/statistics_test_views/test_views/views.view.test_statistics_integration.yml b/core/modules/statistics/tests/modules/statistics_test_views/test_views/views.view.test_statistics_integration.yml index 74b5ceb..a666e27 100644 --- a/core/modules/statistics/tests/modules/statistics_test_views/test_views/views.view.test_statistics_integration.yml +++ b/core/modules/statistics/tests/modules/statistics_test_views/test_views/views.view.test_statistics_integration.yml @@ -151,7 +151,7 @@ display: decimal: . separator: '' format_plural: false - format_plural_singular: true + format_plural_singular: '1' format_plural_plural: '@count' prefix: '' suffix: '' @@ -209,7 +209,7 @@ display: decimal: . separator: '' format_plural: false - format_plural_singular: true + format_plural_singular: '1' format_plural_plural: '@count' prefix: '' suffix: '' diff --git a/core/modules/taxonomy/config/entity.view_mode.taxonomy_term.full.yml b/core/modules/taxonomy/config/entity.view_mode.taxonomy_term.full.yml index 5acccd2..10c90b1 100644 --- a/core/modules/taxonomy/config/entity.view_mode.taxonomy_term.full.yml +++ b/core/modules/taxonomy/config/entity.view_mode.taxonomy_term.full.yml @@ -1,6 +1,6 @@ id: taxonomy_term.full uuid: dd617891-9328-496b-9500-b989ad5424f7 -label: Taxonomy term page +label: 'Taxonomy term page' status: false cache: true targetEntityType: taxonomy_term diff --git a/core/modules/update/config/update.settings.yml b/core/modules/update/config/update.settings.yml index 409b4fd..79a8321 100644 --- a/core/modules/update/config/update.settings.yml +++ b/core/modules/update/config/update.settings.yml @@ -7,4 +7,4 @@ fetch: timeout: 5 notification: emails: { } - threshold: 'all' + threshold: all diff --git a/core/modules/user/config/entity.view_mode.user.full.yml b/core/modules/user/config/entity.view_mode.user.full.yml index 7110416..4f9e564 100644 --- a/core/modules/user/config/entity.view_mode.user.full.yml +++ b/core/modules/user/config/entity.view_mode.user.full.yml @@ -1,6 +1,6 @@ id: user.full uuid: 021fa7ab-8e19-4ab7-8c4e-b68edcfacb52 -label: User account +label: 'User account' status: false cache: true targetEntityType: user diff --git a/core/modules/user/config/search.page.user_search.yml b/core/modules/user/config/search.page.user_search.yml index 4823ec4..b78c699 100644 --- a/core/modules/user/config/search.page.user_search.yml +++ b/core/modules/user/config/search.page.user_search.yml @@ -1,5 +1,5 @@ id: user_search -label: 'Users' +label: Users uuid: c0d6b9a7-09a7-415f-b71a-26957bef635c status: true langcode: en diff --git a/core/modules/user/config/views.view.user_admin_people.yml b/core/modules/user/config/views.view.user_admin_people.yml index c2aab00..6e70a72 100644 --- a/core/modules/user/config/views.view.user_admin_people.yml +++ b/core/modules/user/config/views.view.user_admin_people.yml @@ -47,14 +47,14 @@ display: first: '« first' last: 'last »' expose: - items_per_page: '0' + items_per_page: false items_per_page_label: 'Items per page' items_per_page_options: '5, 10, 20, 40, 60' items_per_page_options_all: false items_per_page_options_all_label: '- All -' offset: false offset_label: Offset - quantity: '9' + quantity: 9 style: type: table options: @@ -236,10 +236,10 @@ display: hide_empty: false empty_zero: false hide_alter_empty: true - link_to_user: '1' - overwrite_anonymous: '0' + link_to_user: true + overwrite_anonymous: false anonymous_text: '' - format_username: '1' + format_username: true plugin_id: user_name provider: user status: @@ -676,7 +676,7 @@ display: admin_label: '' operator: contains value: '' - group: '1' + group: 1 exposed: true expose: operator_id: combine_op @@ -700,7 +700,7 @@ display: optional: true widget: select multiple: false - remember: 0 + remember: false default_group: All default_group_multiple: { } group_items: { } @@ -717,7 +717,7 @@ display: admin_label: '' operator: or value: { } - group: '1' + group: 1 exposed: true expose: operator_id: rid_op @@ -733,7 +733,7 @@ display: authenticated: authenticated anonymous: '0' administrator: '0' - reduce: '0' + reduce: false is_grouped: false group_info: label: '' @@ -742,7 +742,7 @@ display: optional: true widget: select multiple: false - remember: 0 + remember: false default_group: All default_group_multiple: { } group_items: { } @@ -758,7 +758,7 @@ display: admin_label: '' operator: or value: { } - group: '1' + group: 1 exposed: true expose: operator_id: permission_op @@ -774,7 +774,7 @@ display: authenticated: authenticated anonymous: '0' administrator: '0' - reduce: '0' + reduce: false is_grouped: false group_info: label: '' @@ -783,7 +783,7 @@ display: optional: true widget: select multiple: false - remember: 0 + remember: false default_group: All default_group_multiple: { } group_items: { } @@ -798,8 +798,8 @@ display: group_type: group admin_label: '' operator: '=' - value: All - group: '1' + value: true + group: 1 exposed: true expose: operator_id: '' @@ -823,7 +823,7 @@ display: optional: true widget: select multiple: false - remember: 0 + remember: false default_group: All default_group_multiple: { } group_items: @@ -849,7 +849,7 @@ display: min: '' max: '' value: '0' - group: '1' + group: 1 exposed: false expose: operator_id: '0' @@ -871,7 +871,7 @@ display: optional: true widget: select multiple: false - remember: 0 + remember: false default_group: All default_group_multiple: { } group_items: { } @@ -910,7 +910,7 @@ display: use_more_always: '0' use_more_text: more display_comment: '' - use_ajax: '0' + use_ajax: false hide_attachment_summary: '0' show_admin_links: '1' group_by: '0' diff --git a/core/modules/user/config/views.view.who_s_new.yml b/core/modules/user/config/views.view.who_s_new.yml index b0042ca..fd6a169 100644 --- a/core/modules/user/config/views.view.who_s_new.yml +++ b/core/modules/user/config/views.view.who_s_new.yml @@ -2,7 +2,7 @@ base_field: uid base_table: users core: 8.x description: 'Shows a list of the newest user accounts on the site.' -status: '1' +status: true display: block_1: display_plugin: block @@ -12,7 +12,7 @@ display: display_options: display_description: 'A list of new users' block_description: 'Who''s new' - block_category: 'User' + block_category: User default: display_plugin: default id: default @@ -30,26 +30,26 @@ display: query: type: views_query options: - disable_sql_rewrite: '0' - distinct: '0' - slave: '0' - query_comment: '' + disable_sql_rewrite: false + distinct: false + slave: false + query_comment: false query_tags: { } exposed_form: type: basic options: submit_button: Apply - reset_button: '0' + reset_button: false reset_button_label: Reset exposed_sorts_label: 'Sort by' - expose_sort_order: '1' + expose_sort_order: true sort_asc_label: Asc sort_desc_label: Desc pager: type: some options: - items_per_page: '5' - offset: '0' + items_per_page: 5 + offset: 0 style: type: html_list row: @@ -61,32 +61,32 @@ display: field: name label: '' alter: - alter_text: '0' - make_link: '0' - absolute: '0' - trim: '0' - word_boundary: '0' - ellipsis: '0' - strip_tags: '0' - html: '0' - hide_empty: '0' - empty_zero: '0' + alter_text: false + make_link: false + absolute: false + trim: false + word_boundary: false + ellipsis: false + strip_tags: false + html: false + hide_empty: false + empty_zero: false link_to_user: '1' overwrite_anonymous: '0' relationship: none group_type: group admin_label: '' - exclude: '0' + exclude: false element_type: '' element_class: '' element_label_type: '' element_label_class: '' - element_label_colon: '1' + element_label_colon: true element_wrapper_type: '' element_wrapper_class: '' - element_default_classes: '1' + element_default_classes: true empty: '' - hide_alter_empty: '1' + hide_alter_empty: true anonymous_text: '' format_username: '1' filters: @@ -97,7 +97,7 @@ display: id: status expose: operator: '0' - group: '1' + group: 1 access: id: access table: users @@ -111,29 +111,29 @@ display: max: '' value: '1970-01-01' type: date - group: '1' - exposed: '0' + group: 1 + exposed: false expose: operator_id: '0' label: '' description: '' - use_operator: '0' + use_operator: false operator: '' identifier: '' - required: '0' - remember: '0' - multiple: '0' + required: false + remember: false + multiple: false remember_roles: authenticated: authenticated - is_grouped: '0' + is_grouped: false group_info: label: '' description: '' identifier: '' - optional: '1' + optional: true widget: select - multiple: '0' - remember: '0' + multiple: false + remember: false default_group: All default_group_multiple: { } group_items: { } @@ -147,7 +147,7 @@ display: group_type: group admin_label: '' order: DESC - exposed: '0' + exposed: false expose: label: '' granularity: second @@ -161,6 +161,6 @@ display: label: 'Who''s new' module: views id: who_s_new -tag: 'default' +tag: default uuid: 8b2c05e3-046b-447f-922b-43a832220667 langcode: en diff --git a/core/modules/user/config/views.view.who_s_online.yml b/core/modules/user/config/views.view.who_s_online.yml index 951830f..1bf96ae 100644 --- a/core/modules/user/config/views.view.who_s_online.yml +++ b/core/modules/user/config/views.view.who_s_online.yml @@ -2,7 +2,7 @@ base_field: uid base_table: users core: 8.x description: 'Shows the user names of the most recently active users, and the total number of active users.' -status: '1' +status: true display: default: display_plugin: default @@ -20,33 +20,33 @@ display: query: type: views_query options: - disable_sql_rewrite: '0' - distinct: '0' - slave: '0' - query_comment: '' + disable_sql_rewrite: false + distinct: false + slave: false + query_comment: false query_tags: { } exposed_form: type: basic options: submit_button: Apply - reset_button: '0' + reset_button: false reset_button_label: Reset exposed_sorts_label: 'Sort by' - expose_sort_order: '1' + expose_sort_order: true sort_asc_label: Asc sort_desc_label: Desc pager: type: some options: - items_per_page: '10' - offset: '0' + items_per_page: 10 + offset: 0 style: type: html_list options: grouping: { } row_class: '' - default_row_class: '1' - row_class_special: '1' + default_row_class: true + row_class_special: true type: ul wrapper_class: item-list class: '' @@ -59,32 +59,32 @@ display: field: name label: '' alter: - alter_text: '0' - make_link: '0' - absolute: '0' - trim: '0' - word_boundary: '0' - ellipsis: '0' - strip_tags: '0' - html: '0' - hide_empty: '0' - empty_zero: '0' + alter_text: false + make_link: false + absolute: false + trim: false + word_boundary: false + ellipsis: false + strip_tags: false + html: false + hide_empty: false + empty_zero: false link_to_user: '1' overwrite_anonymous: '0' relationship: none group_type: group admin_label: '' - exclude: '0' + exclude: false element_type: '' element_class: '' element_label_type: '' element_label_class: '' - element_label_colon: '1' + element_label_colon: true element_wrapper_type: '' element_wrapper_class: '' - element_default_classes: '1' + element_default_classes: true empty: '' - hide_alter_empty: '1' + hide_alter_empty: true anonymous_text: '' format_username: '1' filters: @@ -95,7 +95,7 @@ display: id: status expose: operator: '0' - group: '1' + group: 1 access: id: access table: users @@ -109,31 +109,31 @@ display: max: '' value: '-15 minutes' type: offset - group: '1' - exposed: '0' + group: 1 + exposed: false expose: operator_id: access_op label: 'Last access' description: 'A user is considered online for this long after they have last viewed a page.' - use_operator: '0' + use_operator: false operator: access_op identifier: access - required: '0' - remember: '0' - multiple: '0' + required: false + remember: false + multiple: false remember_roles: authenticated: authenticated anonymous: '0' administrator: '0' - is_grouped: '0' + is_grouped: false group_info: label: '' description: '' identifier: '' - optional: '1' + optional: true widget: select - multiple: '0' - remember: '0' + multiple: false + remember: false default_group: All default_group_multiple: { } group_items: { } @@ -147,7 +147,7 @@ display: relationship: none group_type: group admin_label: '' - exposed: '0' + exposed: false expose: label: '' granularity: second @@ -174,8 +174,8 @@ display: relationship: none group_type: group admin_label: '' - empty: '1' - tokenize: '0' + empty: true + tokenize: false content: 'There are currently 0 users online.' plugin_id: text_custom relationships: { } diff --git a/core/modules/views/config/schema/views.data_types.schema.yml b/core/modules/views/config/schema/views.data_types.schema.yml index cba9fe7..c7cb6ce 100644 --- a/core/modules/views/config/schema/views.data_types.schema.yml +++ b/core/modules/views/config/schema/views.data_types.schema.yml @@ -227,6 +227,9 @@ views_area: empty: type: boolean label: 'Should the area be displayed on empty results.' + plugin_id: + type: string + label: 'Plugin ID' views_handler: type: mapping @@ -510,6 +513,9 @@ views_pager: offset: type: integer label: 'Offset' + items_per_page: + type: integer + label: 'Items per page' views_pager_sql: type: views_pager @@ -537,13 +543,12 @@ views_pager_sql: quantity: type: integer label: 'Number of pager links visible' - expose: type: mapping label: 'Exposed options' mapping: items_per_page: - type: integer + type: boolean label: 'Items per page' items_per_page_label: type: label @@ -674,7 +679,7 @@ views_filter: type: boolean label: 'Allow multiple selections' remember: - type: integer + type: boolean label: 'Remember' default_group: type: string diff --git a/core/modules/views/config/schema/views.display.schema.yml b/core/modules/views/config/schema/views.display.schema.yml index 601c229..e727b7f 100644 --- a/core/modules/views/config/schema/views.display.schema.yml +++ b/core/modules/views/config/schema/views.display.schema.yml @@ -86,6 +86,9 @@ views.display.feed: sequence: - type: string label: 'Display' + display_description: + type: text + label: 'Display description' views.display.embed: type: views_display diff --git a/core/modules/views/config/schema/views.pager.schema.yml b/core/modules/views/config/schema/views.pager.schema.yml index 4d171df..eb36022 100644 --- a/core/modules/views/config/schema/views.pager.schema.yml +++ b/core/modules/views/config/schema/views.pager.schema.yml @@ -11,10 +11,6 @@ views.pager.none: views.pager.some: type: views_pager label: 'Display a specified number of items' - mapping: - items_per_page: - type: integer - label: 'Items per page' views.pager.mini: type: views_pager_sql @@ -34,3 +30,6 @@ views.pager.full: last: type: label label: 'Last page link text' + quantity: + type: integer + label: 'Number of pager links visible' diff --git a/core/modules/views/config/schema/views.style.schema.yml b/core/modules/views/config/schema/views.style.schema.yml index dc6edd0..5a10aff 100644 --- a/core/modules/views/config/schema/views.style.schema.yml +++ b/core/modules/views/config/schema/views.style.schema.yml @@ -59,7 +59,7 @@ views.style.table: - type: string label: 'Columns name' default: - type: string + type: integer label: 'Default sort' info: type: sequence @@ -101,10 +101,15 @@ views.style.table: empty_table: type: boolean label: 'Show the empty text in the table' - + caption: + type: label + label: 'Caption' + description: + type: text + label: 'Caption' views.style.default_summary: - type: mapping + type: views_style label: 'Summary options' mapping: base_path: @@ -121,7 +126,7 @@ views.style.default_summary: label: 'Items to display' views.style.rss: - type: mapping + type: views_style label: 'RSS Feed' mapping: description: @@ -129,7 +134,7 @@ views.style.rss: label: 'RSS description' views.style.unformatted_summary: - type: mapping + type: views_style label: 'Unformatted' mapping: inline: diff --git a/core/modules/views/config/views.view.archive.yml b/core/modules/views/config/views.view.archive.yml index 2526bbc..b9bb1fc 100644 --- a/core/modules/views/config/views.view.archive.yml +++ b/core/modules/views/config/views.view.archive.yml @@ -43,7 +43,7 @@ display: id: 0 total_pages: 0 expose: - items_per_page: 0 + items_per_page: false items_per_page_label: 'Items per page' items_per_page_options: '5, 10, 20, 40, 60' items_per_page_options_all: false diff --git a/core/modules/views/config/views.view.glossary.yml b/core/modules/views/config/views.view.glossary.yml index df4f4dd..7d5f284 100644 --- a/core/modules/views/config/views.view.glossary.yml +++ b/core/modules/views/config/views.view.glossary.yml @@ -43,7 +43,7 @@ display: id: 0 total_pages: 0 expose: - items_per_page: 0 + items_per_page: false items_per_page_label: 'Items per page' items_per_page_options: '5, 10, 20, 40, 60' items_per_page_options_all: false diff --git a/core/modules/views/config/views.view.taxonomy_term.yml b/core/modules/views/config/views.view.taxonomy_term.yml index 40ca142..ed7c0ba 100644 --- a/core/modules/views/config/views.view.taxonomy_term.yml +++ b/core/modules/views/config/views.view.taxonomy_term.yml @@ -42,7 +42,7 @@ display: id: 0 total_pages: 0 expose: - items_per_page: '0' + items_per_page: false items_per_page_label: 'Items per page' items_per_page_options: '5, 10, 20, 40, 60' items_per_page_options_all: false @@ -100,11 +100,11 @@ display: type: 'entity:taxonomy_term' fail: 'not found' validate_options: - access: '1' + access: true operation: view - multiple: '1' + multiple: 1 bundles: { } - depth: '0' + depth: 0 break_phrase: true plugin_id: taxonomy_index_tid_depth relationship: none @@ -115,8 +115,8 @@ display: default_argument_skip_url: false summary_options: base_path: '' - count: '1' - items_per_page: '25' + count: true + items_per_page: 25 override: false provider: taxonomy term_node_tid_depth_modifier: @@ -149,7 +149,7 @@ display: id: status_extra table: node_field_data field: status_extra - group: '0' + group: 0 expose: operator: '0' plugin_id: node_status @@ -166,8 +166,8 @@ display: type: 'entity:node' options: view_mode: teaser - links: '1' - comments: '0' + links: true + comments: false header: { } footer: { } empty: { } @@ -200,7 +200,7 @@ display: id: 0 total_pages: 0 expose: - items_per_page: '0' + items_per_page: false items_per_page_label: 'Items per page' items_per_page_options: '5, 10, 20, 40, 60' items_per_page_options_all: false @@ -212,7 +212,7 @@ display: next: 'next ›' first: '« first' last: 'last »' - quantity: '9' + quantity: 9 path: taxonomy/term/%/%/feed displays: page: page @@ -222,13 +222,13 @@ display: options: description: '' grouping: { } - uses_fields: '0' + uses_fields: false row: type: node_rss options: relationship: none item_length: default - links: '0' + links: false label: 'Taxonomy term' module: taxonomy id: taxonomy_term diff --git a/core/modules/views/config/views.view.tracker.yml b/core/modules/views/config/views.view.tracker.yml index 3d0b232..9becb88 100644 --- a/core/modules/views/config/views.view.tracker.yml +++ b/core/modules/views/config/views.view.tracker.yml @@ -43,7 +43,7 @@ display: id: 0 total_pages: 0 expose: - items_per_page: '0' + items_per_page: false items_per_page_label: 'Items per page' items_per_page_options: '5, 10, 20, 40, 60' items_per_page_options_all: false @@ -166,7 +166,7 @@ display: hide_empty: false empty_zero: false hide_alter_empty: true - link_to_node: '1' + link_to_node: true provider: node name: id: name @@ -217,10 +217,10 @@ display: hide_empty: false empty_zero: false hide_alter_empty: true - link_to_user: '1' - overwrite_anonymous: '0' + link_to_user: true + overwrite_anonymous: false anonymous_text: '' - format_username: '1' + format_username: true provider: user comment_count: id: comment_count @@ -393,7 +393,7 @@ display: label: '' hide_empty: true suffix: ' new' - link_to_comment: '1' + link_to_comment: true plugin_id: node_new_comments relationship: none group_type: group @@ -437,11 +437,11 @@ display: empty: '' empty_zero: false hide_alter_empty: true - set_precision: '0' - precision: '0' + set_precision: false + precision: 0 decimal: . separator: ',' - format_plural: '0' + format_plural: false format_plural_singular: '1' format_plural_plural: '@count' prefix: '' @@ -492,8 +492,8 @@ display: id: status table: node_field_data field: status - value: '1' - group: '0' + value: true + group: 0 expose: operator: '0' plugin_id: boolean @@ -546,7 +546,7 @@ display: inline: { } separator: '' hide_empty: false - default_field_elements: '1' + default_field_elements: true header: { } footer: { } empty: { } diff --git a/core/profiles/standard/config/block.block.seven_login.yml b/core/profiles/standard/config/block.block.seven_login.yml index dab202f..f76a568 100644 --- a/core/profiles/standard/config/block.block.seven_login.yml +++ b/core/profiles/standard/config/block.block.seven_login.yml @@ -22,4 +22,3 @@ visibility: article: '0' page: '0' visibility__active_tab: edit-visibility-path - diff --git a/core/profiles/standard/config/editor.editor.full_html.yml b/core/profiles/standard/config/editor.editor.full_html.yml index 2e70cfd..cd17f03 100644 --- a/core/profiles/standard/config/editor.editor.full_html.yml +++ b/core/profiles/standard/config/editor.editor.full_html.yml @@ -32,7 +32,7 @@ settings: - Table - HorizontalRule - - name: Block Formatting + name: 'Block Formatting' items: - Format - @@ -40,7 +40,6 @@ settings: items: - ShowBlocks - Source - plugins: stylescombo: styles: ''