W3cubDocs

/Drupal 8

public function ConfigEntityListBuilder::load

public ConfigEntityListBuilder::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 EntityListBuilder::load

File

core/lib/Drupal/Core/Config/Entity/ConfigEntityListBuilder.php, line 18

Class

ConfigEntityListBuilder
Defines the default class to build a listing of configuration entities.

Namespace

Drupal\Core\Config\Entity

Code

public function load() {
  $entity_ids = $this->getEntityIds();
  $entities = $this->storage->loadMultipleOverrideFree($entity_ids);

  // Sort the entities using the entity class's sort() method.
  // See \Drupal\Core\Config\Entity\ConfigEntityBase::sort().
  uasort($entities, array($this->entityType->getClass(), 'sort'));
  return $entities;
}

© 2001–2016 by the original authors
Licensed under the GNU General Public License, version 2 and later.
Drupal is a registered trademark of Dries Buytaert.
https://api.drupal.org/api/drupal/core!lib!Drupal!Core!Config!Entity!ConfigEntityListBuilder.php/function/ConfigEntityListBuilder::load/8.1.x