function ConfigTranslationFieldListBuilder::load
Overrides ConfigEntityListBuilder::load
File
- 
              core/
modules/ config_translation/ src/ Controller/ ConfigTranslationFieldListBuilder.php, line 97  
Class
- ConfigTranslationFieldListBuilder
 - Defines the config translation list builder for field entities.
 
Namespace
Drupal\config_translation\ControllerCode
public function load() {
  // It is not possible to use the standard load method, because this needs
  // all field entities only for the given baseEntityType.
  $ids = \Drupal::entityQuery('field_config')->condition('id', $this->baseEntityType . '.', 'STARTS_WITH')
    ->execute();
  return $this->storage
    ->loadMultiple($ids);
}
Buggy or inaccurate documentation? Please file an issue. Need support? Need help programming? Connect with the Drupal community.