diff --git a/core/modules/field/tests/modules/field_test/field_test.field_type_categories.yml b/core/modules/field/tests/modules/field_test/field_test.field_type_categories.yml new file mode 100644 index 0000000000000000000000000000000000000000..9ad2a5183833166f12c5d074ac798df17deee201 --- /dev/null +++ b/core/modules/field/tests/modules/field_test/field_test.field_type_categories.yml @@ -0,0 +1,3 @@ +field_test_descriptions: + label: 'Field Test' + description: 'Fields for testing descriptions.' diff --git a/core/modules/field/tests/modules/field_test/src/Plugin/Field/FieldType/TestItemWithMultipleDescriptions.php b/core/modules/field/tests/modules/field_test/src/Plugin/Field/FieldType/TestItemWithMultipleDescriptions.php new file mode 100644 index 0000000000000000000000000000000000000000..d193ebf2f8119bb7d2096c46633b6136b0be7d09 --- /dev/null +++ b/core/modules/field/tests/modules/field_test/src/Plugin/Field/FieldType/TestItemWithMultipleDescriptions.php @@ -0,0 +1,23 @@ +<?php + +declare(strict_types=1); + +namespace Drupal\field_test\Plugin\Field\FieldType; + +/** + * Defines the 'test_field_with_multiple_descriptions' entity field item. + * + * @FieldType( + * id = "test_field_with_multiple_descriptions", + * label = @Translation("Test field (multiple descriptions"), + * description = { + * @Translation("This multiple line description needs to use an array"), + * @Translation("This second line contains important information"), + * }, + * category = "field_test_descriptions", + * default_widget = "test_field_widget", + * default_formatter = "field_test_default" + * ) + */ +class TestItemWithMultipleDescriptions extends TestItem { +} diff --git a/core/modules/field/tests/modules/field_test/src/Plugin/Field/FieldType/TestItemWithSingleDescription.php b/core/modules/field/tests/modules/field_test/src/Plugin/Field/FieldType/TestItemWithSingleDescription.php new file mode 100644 index 0000000000000000000000000000000000000000..e14dd039bb5c79da369e5ef0fd1a9cc8e22bd6e5 --- /dev/null +++ b/core/modules/field/tests/modules/field_test/src/Plugin/Field/FieldType/TestItemWithSingleDescription.php @@ -0,0 +1,20 @@ +<?php + +declare(strict_types=1); + +namespace Drupal\field_test\Plugin\Field\FieldType; + +/** + * Defines the 'test_field_with_single_description' entity field item. + * + * @FieldType( + * id = "test_field_with_single_description", + * label = @Translation("Test field (single description"), + * description = @Translation("This one-line field description is important for testing"), + * category = "field_test_descriptions", + * default_widget = "test_field_widget", + * default_formatter = "field_test_default" + * ) + */ +class TestItemWithSingleDescription extends TestItem { +} diff --git a/core/modules/field_ui/src/Form/FieldStorageAddForm.php b/core/modules/field_ui/src/Form/FieldStorageAddForm.php index 63ba58114d3fa8826a41c9ae8ab4336b26ab3bcb..e738094d8c812f3076dc5cddafb0d138906ef093 100644 --- a/core/modules/field_ui/src/Form/FieldStorageAddForm.php +++ b/core/modules/field_ui/src/Form/FieldStorageAddForm.php @@ -367,14 +367,17 @@ protected function addFieldOptionsForGroup(array &$form, FormStateInterface $for $group_field_options = []; foreach ($unique_definitions as $option) { $identifier = $option['unique_identifier']; + // If the field type plugin's annotation defines description as an + // array, render it as an item_list. + $description = !is_array($option['description']) ? $option['description'] : [ + '#theme' => 'item_list', + '#items' => $option['description'], + ]; $radio_element = [ '#type' => 'radio', '#theme_wrappers' => ['form_element__new_storage_type'], '#title' => $option['label'], - '#description' => [ - '#theme' => 'item_list', - '#items' => $option['description'], - ], + '#description' => $description, '#id' => $identifier, '#weight' => $option['weight'], '#parents' => ['group_field_options_wrapper'], diff --git a/core/modules/field_ui/tests/src/Functional/ManageFieldsTest.php b/core/modules/field_ui/tests/src/Functional/ManageFieldsTest.php index e037cb519ef944b8e4115f65964b3d81c057ef0d..649c2d7f6d72f8bfda68d8e2476a312bfc7fdd90 100644 --- a/core/modules/field_ui/tests/src/Functional/ManageFieldsTest.php +++ b/core/modules/field_ui/tests/src/Functional/ManageFieldsTest.php @@ -136,6 +136,16 @@ public function testAddField() { 'type' => 'article', ]); + // Make sure field descriptions appear, both 1 line and multiple lines. + $this->drupalGet('/admin/structure/types/manage/' . $type->id() . '/fields/add-field'); + $edit = [ + 'new_storage_type' => 'field_test_descriptions', + ]; + $this->submitForm($edit, 'Continue'); + $this->assertSession()->pageTextContains('This one-line field description is important for testing'); + $this->assertSession()->pageTextContains('This multiple line description needs to use an array'); + $this->assertSession()->pageTextContains('This second line contains important information'); + // Create a new field without actually saving it. $this->fieldUIAddNewField('admin/structure/types/manage/' . $type->id(), 'test_field', 'Test field', 'test_field', [], [], FALSE); // Assert that the field was not created.