function OpenerResolver::get
Gets a media library opener service from the container.
Parameters
\Drupal\media_library\MediaLibraryState $state: A value object representing the state of the media library.
Return value
\Drupal\media_library\MediaLibraryOpenerInterface The media library opener service.
Overrides OpenerResolverInterface::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_libraryCode
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);
}Buggy or inaccurate documentation? Please file an issue. Need support? Need help programming? Connect with the Drupal community.
