You are here

public function DomainStorageDecorator::loadOptionsList in Devel 8.2

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

Returns the list of domains formatted for a form options list.

Return value

array A weight-sorted array of id => label for use in forms.

Overrides DomainStorageInterface::loadOptionsList

File

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

Class

DomainStorageDecorator
Class DomainStorageDecorator

Namespace

Drupal\webprofiler\Entity\Decorators\Config

Code

public function loadOptionsList() {
  return $this
    ->getOriginalObject()
    ->loadOptionsList();
}