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 39
Class
- OpenerResolver
- Defines a class to resolve media library openers.
Namespace
Drupal\media_libraryCode
public function get(MediaLibraryState $state) {
$service_id = $state->getOpenerId();
$service = $this->openers[$service_id] ?? NULL;
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.