public function ZfExtensionManagerSfContainer::has in Zircon Profile 8.0
Same name and namespace in other branches
- 8 core/lib/Drupal/Component/Bridge/ZfExtensionManagerSfContainer.php \Drupal\Component\Bridge\ZfExtensionManagerSfContainer::has()
Do we have the extension?
Parameters
string $extension:
Return value
bool
Overrides ExtensionManagerInterface::has
File
- core/
lib/ Drupal/ Component/ Bridge/ ZfExtensionManagerSfContainer.php, line 75 - Contains \Drupal\Component\Bridge\ZfExtensionManagerSfContainer.
Class
- ZfExtensionManagerSfContainer
- Defines a bridge between the ZF2 service manager to Symfony container.
Namespace
Drupal\Component\BridgeCode
public function has($extension) {
return $this->container
->has($this->prefix . $this
->canonicalizeName($extension));
}