function ExtensionList::setPathname
Same name in other branches
- 9 core/lib/Drupal/Core/Extension/ExtensionList.php \Drupal\Core\Extension\ExtensionList::setPathname()
- 8.9.x core/lib/Drupal/Core/Extension/ExtensionList.php \Drupal\Core\Extension\ExtensionList::setPathname()
- 11.x core/lib/Drupal/Core/Extension/ExtensionList.php \Drupal\Core\Extension\ExtensionList::setPathname()
Sets the pathname for an extension.
This method is used in the Drupal bootstrapping phase, when the extension system is not fully initialized, to manually set locations of modules and profiles needed to complete bootstrapping.
It is not recommended to call this method except in those rare cases.
@internal
Parameters
string $extension_name: The machine name of the extension.
string $pathname: The pathname of the extension which is to be set explicitly rather than by consulting the dynamic extension listing.
See also
::getPathname
1 call to ExtensionList::setPathname()
- ModuleExtensionList::__construct in core/
lib/ Drupal/ Core/ Extension/ ModuleExtensionList.php - Constructs a new ModuleExtensionList instance.
1 method overrides ExtensionList::setPathname()
- DatabaseDriverList::setPathname in core/
lib/ Drupal/ Core/ Extension/ DatabaseDriverList.php - Sets the pathname for an extension.
File
-
core/
lib/ Drupal/ Core/ Extension/ ExtensionList.php, line 464
Class
- ExtensionList
- Provides available extensions.
Namespace
Drupal\Core\ExtensionCode
public function setPathname($extension_name, $pathname) {
$this->addedPathNames[$extension_name] = $pathname;
}
Buggy or inaccurate documentation? Please file an issue. Need support? Need help programming? Connect with the Drupal community.