function ExtensionList::getExtensionInfo
Same name in other branches
- 8.9.x core/lib/Drupal/Core/Extension/ExtensionList.php \Drupal\Core\Extension\ExtensionList::getExtensionInfo()
- 10 core/lib/Drupal/Core/Extension/ExtensionList.php \Drupal\Core\Extension\ExtensionList::getExtensionInfo()
- 11.x core/lib/Drupal/Core/Extension/ExtensionList.php \Drupal\Core\Extension\ExtensionList::getExtensionInfo()
Returns information about a specified extension.
This function returns the contents of the .info.yml file for the specified extension.
Parameters
string $extension_name: The name of an extension whose information shall be returned.
Return value
mixed[] An associative array of extension information.
Throws
\Drupal\Core\Extension\Exception\UnknownExtensionException If there is no extension with the supplied name.
File
-
core/
lib/ Drupal/ Core/ Extension/ ExtensionList.php, line 341
Class
- ExtensionList
- Provides available extensions.
Namespace
Drupal\Core\ExtensionCode
public function getExtensionInfo($extension_name) {
$all_info = $this->getAllInstalledInfo();
if (isset($all_info[$extension_name])) {
return $all_info[$extension_name];
}
throw new UnknownExtensionException("The {$this->type} {$extension_name} does not exist or is not installed.");
}
Buggy or inaccurate documentation? Please file an issue. Need support? Need help programming? Connect with the Drupal community.