diff --git a/core/modules/config_translation/src/Controller/ConfigTranslationEntityListBuilder.php b/core/modules/config_translation/src/Controller/ConfigTranslationEntityListBuilder.php index 9d94468..a634fc1 100644 --- a/core/modules/config_translation/src/Controller/ConfigTranslationEntityListBuilder.php +++ b/core/modules/config_translation/src/Controller/ConfigTranslationEntityListBuilder.php @@ -8,12 +8,12 @@ namespace Drupal\config_translation\Controller; use Drupal\Core\Entity\EntityInterface; -use Drupal\Core\Entity\EntityListBuilder; +use Drupal\Core\Config\Entity\ConfigEntityListBuilder; /** * Defines the configuration translation list builder for entities. */ -class ConfigTranslationEntityListBuilder extends EntityListBuilder implements ConfigTranslationEntityListBuilderInterface { +class ConfigTranslationEntityListBuilder extends ConfigEntityListBuilder implements ConfigTranslationEntityListBuilderInterface { /** * Provides user facing strings for the filter element. diff --git a/core/modules/config_translation/src/Tests/ConfigTranslationOverviewTest.php b/core/modules/config_translation/src/Tests/ConfigTranslationOverviewTest.php index 2864317..ee9903e 100644 --- a/core/modules/config_translation/src/Tests/ConfigTranslationOverviewTest.php +++ b/core/modules/config_translation/src/Tests/ConfigTranslationOverviewTest.php @@ -120,4 +120,28 @@ public function testHiddenEntities() { $this->assertLinkByHref('admin/config/regional/date-time/formats/manage/html_year/translate'); } + /** + * Tests that overrides do not affect listing screens. + */ + public function testListingPageWithOverrides() { + $original_label = 'Default'; + $overridden_label = 'Overridden label'; + $edited_label = 'Edited label'; + + // Set up an override. + $settings['config']['config_test.dynamic.dotted.default']['label'] = (object) array( + 'value' => $overridden_label, + 'required' => TRUE, + ); + $this->writeSettings($settings); + + // Test that the overridden label is loaded with the entity. + $this->assertEqual(config_test_load('dotted.default')->label(), $overridden_label); + + // Test that the original label on the listing page is intact. + $this->drupalGet('admin/config/regional/config-translation/config_test'); + $this->assertText($original_label); + $this->assertNoText($overridden_label); + } + }