You are here

public function OpenerResolver::get in Drupal 10

Same name and namespace in other branches
  1. 8 core/modules/media_library/src/OpenerResolver.php \Drupal\media_library\OpenerResolver::get()
  2. 9 core/modules/media_library/src/OpenerResolver.php \Drupal\media_library\OpenerResolver::get()

File

core/modules/media_library/src/OpenerResolver.php, line 26

Class

OpenerResolver
Defines a class to get media library openers from the container.

Namespace

Drupal\media_library

Code

public function get(MediaLibraryState $state) {
  $service_id = $state
    ->getOpenerId();
  $service = $this->container
    ->get($service_id);
  if ($service instanceof MediaLibraryOpenerInterface) {
    return $service;
  }
  throw new \RuntimeException("{$service_id} must be an instance of " . MediaLibraryOpenerInterface::class);
}