diff --git a/core/config/schema/core.data_types.schema.yml b/core/config/schema/core.data_types.schema.yml index ca95ffc2e858bc2dd8231019ad9d0743b2896ef5..e5dc2728338c5cafe675b77d67ae7fcd56ca872f 100644 --- a/core/config/schema/core.data_types.schema.yml +++ b/core/config/schema/core.data_types.schema.yml @@ -168,6 +168,17 @@ bytes: constraints: Callback: ['\Drupal\Component\Utility\Bytes', 'validateConstraint'] +weight: + type: integer + label: 'Weight' + constraints: + Range: + # @see PHP_INT_MIN (32-bit) + min: -2147483648 + # @see PHP_INT_MAX (32-bit) + max: 2147483647 + FullyValidatable: ~ + # Complex extended data types: # Root of a configuration object. @@ -229,7 +240,7 @@ filter: type: boolean label: 'Status' weight: - type: integer + type: weight label: 'Weight' settings: type: filter_settings.[%parent.id] @@ -483,7 +494,7 @@ display_variant.plugin: type: required_label label: 'Label' weight: - type: integer + type: weight label: 'Weight' uuid: type: uuid diff --git a/core/config/schema/core.entity.schema.yml b/core/config/schema/core.entity.schema.yml index 4b1cfb701d6a7bcbd518f000021715160653bc0d..2934ca7fee0c1287bed1f4bae8092fad68fe986c 100644 --- a/core/config/schema/core.entity.schema.yml +++ b/core/config/schema/core.entity.schema.yml @@ -101,7 +101,7 @@ field_formatter.entity_view_display: type: field_formatter mapping: weight: - type: integer + type: weight label: 'Weight' region: type: string @@ -144,7 +144,7 @@ core.entity_form_display.*.*.*: manager: plugin.manager.field.widget interface: '\Drupal\Core\Field\WidgetInterface' weight: - type: integer + type: weight label: 'Weight' region: type: string diff --git a/core/config/schema/core.menu.schema.yml b/core/config/schema/core.menu.schema.yml index 1a6c268e1044787a890c5ec3162ae8776c62828f..bf2bb195274ed2203965e4e4a44f43d6209af85f 100644 --- a/core/config/schema/core.menu.schema.yml +++ b/core/config/schema/core.menu.schema.yml @@ -16,7 +16,7 @@ core.menu.static_menu_link_overrides: type: string label: 'Parent' weight: - type: integer + type: weight label: 'Weight' expanded: type: boolean diff --git a/core/modules/block/config/schema/block.schema.yml b/core/modules/block/config/schema/block.schema.yml index f82c157ebc863c17f4de31b34c14109d511605f3..02c83722caf75464553d226e2f223081443f69a6 100644 --- a/core/modules/block/config/schema/block.schema.yml +++ b/core/modules/block/config/schema/block.schema.yml @@ -21,7 +21,7 @@ block.block.*: type: string label: 'Region' weight: - type: integer + type: weight label: 'Weight' provider: type: string diff --git a/core/modules/config/tests/config_schema_test/config/schema/config_schema_test.schema.yml b/core/modules/config/tests/config_schema_test/config/schema/config_schema_test.schema.yml index def6d8d029409a32700d47212fa4b358a3464c63..c85451a9d73af808c551a41a1d8ea7a161c1b168 100644 --- a/core/modules/config/tests/config_schema_test/config/schema/config_schema_test.schema.yml +++ b/core/modules/config/tests/config_schema_test/config/schema/config_schema_test.schema.yml @@ -143,7 +143,7 @@ config_schema_test.ignore: type: ignore label: 'Indescribable' weight: - type: integer + type: weight label: 'Weight' config_schema_test.plugin_types: 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 98e6be0a69d70b9d42a50054a49c4ee358392ab3..b0118f6821161dea15b8f573a70fc8f894c8aa5e 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 @@ -10,7 +10,7 @@ config_test_dynamic: type: label label: 'Label' weight: - type: integer + type: weight label: 'Weight' style: type: string diff --git a/core/modules/contact/config/schema/contact.schema.yml b/core/modules/contact/config/schema/contact.schema.yml index c3f6dc0aa39a837643b3d001b1a33e51188398e5..4357a426219f5c3e14d82e638eda49f4941814d2 100644 --- a/core/modules/contact/config/schema/contact.schema.yml +++ b/core/modules/contact/config/schema/contact.schema.yml @@ -25,7 +25,7 @@ contact.form.*: type: text label: 'Auto-reply' weight: - type: integer + type: weight label: 'Weight' message: type: text diff --git a/core/modules/filter/config/schema/filter.schema.yml b/core/modules/filter/config/schema/filter.schema.yml index 1357c7ac618905f1666e7c3d485c1765d1ca856b..6f57fb413dc389773846218196a18a7348ca44d1 100644 --- a/core/modules/filter/config/schema/filter.schema.yml +++ b/core/modules/filter/config/schema/filter.schema.yml @@ -35,7 +35,7 @@ filter.format.*: Length: max: 255 weight: - type: integer + type: weight label: 'Weight' roles: type: sequence diff --git a/core/modules/image/config/schema/image.schema.yml b/core/modules/image/config/schema/image.schema.yml index 7855f536702250153fd6fa7ef60621b402b77320..bd438deb8229148491b24a857604ab4eebe84d24 100644 --- a/core/modules/image/config/schema/image.schema.yml +++ b/core/modules/image/config/schema/image.schema.yml @@ -23,7 +23,7 @@ image.style.*: manager: plugin.manager.image.effect interface: 'Drupal\image\ImageEffectInterface' weight: - type: integer + type: weight data: type: image.effect.[%parent.id] diff --git a/core/modules/language/config/schema/language.schema.yml b/core/modules/language/config/schema/language.schema.yml index 06259081d8c3caec20f41b11f9ba0d0a01481455..ea319ae44dd5d334e7d75e4746585bc448c1cfd3 100644 --- a/core/modules/language/config/schema/language.schema.yml +++ b/core/modules/language/config/schema/language.schema.yml @@ -98,7 +98,7 @@ language.entity.*: type: string label: 'Direction' weight: - type: integer + type: weight label: 'Weight' locked: type: boolean diff --git a/core/modules/layout_builder/config/schema/layout_builder.schema.yml b/core/modules/layout_builder/config/schema/layout_builder.schema.yml index 46c12e0b0b14f0f80abe383e900a75dd9ffc71d7..11bfcd736126223e59520a6d308a1eab6ed5bdd6 100644 --- a/core/modules/layout_builder/config/schema/layout_builder.schema.yml +++ b/core/modules/layout_builder/config/schema/layout_builder.schema.yml @@ -51,7 +51,7 @@ layout_builder.component: configuration: type: block.settings.[id] weight: - type: integer + type: weight label: 'Weight' additional: type: ignore diff --git a/core/modules/search/config/schema/search.schema.yml b/core/modules/search/config/schema/search.schema.yml index f4284a0e12d5b394ae05e5b52f92161b2425411f..1b0b199e55db7598b195799758640829e5097dea 100644 --- a/core/modules/search/config/schema/search.schema.yml +++ b/core/modules/search/config/schema/search.schema.yml @@ -81,7 +81,7 @@ search.page.*: type: string label: 'Search page path' weight: - type: integer + type: weight label: 'Weight' plugin: type: string diff --git a/core/modules/taxonomy/config/schema/taxonomy.schema.yml b/core/modules/taxonomy/config/schema/taxonomy.schema.yml index 4b4cbc0a22cd1107d6dc20484bafedc3fcf635b9..4bc6c55e803676d1328f7aaad499751dc6bc8dae 100644 --- a/core/modules/taxonomy/config/schema/taxonomy.schema.yml +++ b/core/modules/taxonomy/config/schema/taxonomy.schema.yml @@ -44,11 +44,8 @@ taxonomy.vocabulary.*: NotBlank: allowNull: true weight: - type: integer + type: weight label: 'Weight' - # A weight can be any integer, positive or negative. - constraints: - NotNull: [] new_revision: type: boolean label: 'Whether a new revision should be created by default' diff --git a/core/modules/tour/config/schema/tour.schema.yml b/core/modules/tour/config/schema/tour.schema.yml index 27cbcf7925a9299149bdcc6f4e96e4af992e49cd..a51874b2884822d036555e834325ee7b367134e3 100644 --- a/core/modules/tour/config/schema/tour.schema.yml +++ b/core/modules/tour/config/schema/tour.schema.yml @@ -49,7 +49,7 @@ tour.tip: type: required_label label: 'Label' weight: - type: integer + type: weight label: 'Weight' position: type: string diff --git a/core/modules/user/config/schema/user.schema.yml b/core/modules/user/config/schema/user.schema.yml index 222fd5b6c3431e4aec23b570ef46669acb3168b0..ed7e3875eda929b68150afb01ce08fc3fba7a23a 100644 --- a/core/modules/user/config/schema/user.schema.yml +++ b/core/modules/user/config/schema/user.schema.yml @@ -114,7 +114,7 @@ user.role.*: type: required_label label: 'Label' weight: - type: integer + type: weight label: 'User role weight' is_admin: type: boolean diff --git a/core/modules/views/config/schema/views.display.schema.yml b/core/modules/views/config/schema/views.display.schema.yml index a685e33a99015438dba9d022720c20b60d5d323e..d4af22527010a747f04cf86df437765259d281c5 100644 --- a/core/modules/views/config/schema/views.display.schema.yml +++ b/core/modules/views/config/schema/views.display.schema.yml @@ -32,7 +32,7 @@ views.display.page: type: text label: 'Description' weight: - type: integer + type: weight label: 'Weight' enabled: type: boolean @@ -63,7 +63,7 @@ views.display.page: type: text label: 'Description' weight: - type: integer + type: weight label: 'Weight' menu_name: type: string diff --git a/core/modules/workflows/config/schema/workflows.schema.yml b/core/modules/workflows/config/schema/workflows.schema.yml index 1d102d0ac442252652309fb9115fd9e9fd596442..fb0197ff8f206095501ad03c90dd9bdf9ada193d 100644 --- a/core/modules/workflows/config/schema/workflows.schema.yml +++ b/core/modules/workflows/config/schema/workflows.schema.yml @@ -26,7 +26,7 @@ workflows.state: label: 'Label' translation context: 'Workflow state label' weight: - type: integer + type: weight label: 'Weight' workflows.transition: @@ -46,5 +46,5 @@ workflows.transition: type: string label: 'To state ID' weight: - type: integer + type: weight label: 'Weight' diff --git a/core/tests/Drupal/KernelTests/Core/Config/ConfigSchemaTest.php b/core/tests/Drupal/KernelTests/Core/Config/ConfigSchemaTest.php index 5243cc4c5efe4c3c49d2113f878b0b6eb229b57d..688da95f0d499e424c9cd3f79546192785cddb6d 100644 --- a/core/tests/Drupal/KernelTests/Core/Config/ConfigSchemaTest.php +++ b/core/tests/Drupal/KernelTests/Core/Config/ConfigSchemaTest.php @@ -157,7 +157,7 @@ public function testSchemaMapping() { ]; $expected['mapping']['weight'] = [ 'label' => 'Weight', - 'type' => 'integer', + 'type' => 'weight', ]; $expected['type'] = 'config_schema_test.ignore'; $expected['unwrap_for_canonical_representation'] = TRUE; @@ -206,7 +206,7 @@ public function testSchemaMapping() { ], ]; $expected['mapping']['effects']['sequence']['mapping']['data']['type'] = 'image.effect.[%parent.id]'; - $expected['mapping']['effects']['sequence']['mapping']['weight']['type'] = 'integer'; + $expected['mapping']['effects']['sequence']['mapping']['weight']['type'] = 'weight'; $expected['mapping']['effects']['sequence']['mapping']['uuid']['type'] = 'uuid'; $expected['mapping']['third_party_settings']['type'] = 'sequence'; $expected['mapping']['third_party_settings']['label'] = 'Third party settings'; diff --git a/core/tests/Drupal/KernelTests/Core/Entity/ConfigEntityAdapterTest.php b/core/tests/Drupal/KernelTests/Core/Entity/ConfigEntityAdapterTest.php index 277a1165fff86bab08a51a0544efa15a3fb871ef..1f490bdb8e1e7e723c19bcd04e8144829a60837d 100644 --- a/core/tests/Drupal/KernelTests/Core/Entity/ConfigEntityAdapterTest.php +++ b/core/tests/Drupal/KernelTests/Core/Entity/ConfigEntityAdapterTest.php @@ -71,8 +71,11 @@ public function testValidate() { ]); $adapter = ConfigEntityAdapter::createFromEntity($this->entity); $violations = $adapter->validate(); - $this->assertCount(1, $violations); + $this->assertCount(2, $violations); $violation = $violations->get(0); + $this->assertEquals('This value should be a valid number.', $violation->getMessage()); + $this->assertEquals('weight', $violation->getPropertyPath()); + $violation = $violations->get(1); $this->assertEquals('This value should be of the correct primitive type.', $violation->getMessage()); $this->assertEquals('weight', $violation->getPropertyPath()); }