You are here

public function ZfExtensionManagerSfContainer::has in Drupal 9

Same name and namespace in other branches
  1. 8 core/lib/Drupal/Component/Bridge/ZfExtensionManagerSfContainer.php \Drupal\Component\Bridge\ZfExtensionManagerSfContainer::has()

File

core/lib/Drupal/Component/Bridge/ZfExtensionManagerSfContainer.php, line 86

Class

ZfExtensionManagerSfContainer
Defines a bridge between the Laminas service manager to Symfony container.

Namespace

Drupal\Component\Bridge

Code

public function has($extension) {
  if ($this->container
    ->has($this->prefix . $this
    ->canonicalizeName($extension))) {
    return TRUE;
  }
  return $this->standalone && $this->standalone
    ->has($extension);
}