protected function ProfileExtensionList::getInstalledExtensionNames in Drupal 9
Same name and namespace in other branches
- 8 core/lib/Drupal/Core/Extension/ProfileExtensionList.php \Drupal\Core\Extension\ProfileExtensionList::getInstalledExtensionNames()
Returns a list of machine names of installed extensions.
Return value
string[] The machine names of all installed extensions of this type.
Overrides ExtensionList::getInstalledExtensionNames
File
- core/
lib/ Drupal/ Core/ Extension/ ProfileExtensionList.php, line 31
Class
- ProfileExtensionList
- Provides a list of installation profiles.
Namespace
Drupal\Core\ExtensionCode
protected function getInstalledExtensionNames() {
return [
$this->installProfile,
];
}