You are here

public function DomainStorageDecorator::loadMultipleSorted in Devel 8.3

Same name and namespace in other branches
  1. 8.2 webprofiler/src/Entity/Decorators/Config/DomainStorageDecorator.php \Drupal\webprofiler\Entity\Decorators\Config\DomainStorageDecorator::loadMultipleSorted()
  2. 4.x webprofiler/src/Entity/Decorators/Config/DomainStorageDecorator.php \Drupal\webprofiler\Entity\Decorators\Config\DomainStorageDecorator::loadMultipleSorted()

Loads multiple domains and sorts by weight.

Parameters

array $ids: An optional array of specific ids to load.

Return value

\Drupal\domain\DomainInterface[] An array of domain records.

Overrides DomainStorageInterface::loadMultipleSorted

File

webprofiler/src/Entity/Decorators/Config/DomainStorageDecorator.php, line 30

Class

DomainStorageDecorator
Class DomainStorageDecorator.

Namespace

Drupal\webprofiler\Entity\Decorators\Config

Code

public function loadMultipleSorted(array $ids = NULL) {
  return $this
    ->getOriginalObject()
    ->loadMultipleSorted($ids);
}