public ConfigTranslationFieldListBuilder::load()
Loads entities of this type from storage for listing.
This allows the implementation to manipulate the listing, like filtering or sorting the loaded entities.
Return value
\Drupal\Core\Entity\EntityInterface[] An array of entities implementing \Drupal\Core\Entity\EntityInterface.
Overrides ConfigEntityListBuilder::load
File
- core/modules/config_translation/src/Controller/ConfigTranslationFieldListBuilder.php, line 85
Class
- ConfigTranslationFieldListBuilder
- Defines the config translation list builder for field entities.
Namespace
Drupal\config_translation\Controller
Code
1 2 3 4 5 6 7 8 | 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 ); } |
Please login to continue.