public function ExtensionList::getAllAvailableInfo in Drupal 9
Same name and namespace in other branches
- 8 core/lib/Drupal/Core/Extension/ExtensionList.php \Drupal\Core\Extension\ExtensionList::getAllAvailableInfo()
Returns an array of info files information of available extensions.
This function returns the processed contents (with added defaults) of the .info.yml files.
Return value
array[] An associative array of extension information arrays, keyed by extension name.
1 call to ExtensionList::getAllAvailableInfo()
- ExtensionList::getAllInstalledInfo in core/
lib/ Drupal/ Core/ Extension/ ExtensionList.php - Returns an array of info files information of installed extensions.
File
- core/
lib/ Drupal/ Core/ Extension/ ExtensionList.php, line 359
Class
- ExtensionList
- Provides available extensions.
Namespace
Drupal\Core\ExtensionCode
public function getAllAvailableInfo() {
if ($this->extensionInfo === NULL) {
$cache_id = $this
->getInfoCacheId();
if ($cache = $this->cache
->get($cache_id)) {
$info = $cache->data;
}
else {
$info = $this
->recalculateInfo();
$this->cache
->set($cache_id, $info);
}
$this->extensionInfo = $info;
}
return $this->extensionInfo;
}