public function ModuleHandler::addProfile in Drupal 8
Same name and namespace in other branches
- 9 core/lib/Drupal/Core/Extension/ModuleHandler.php \Drupal\Core\Extension\ModuleHandler::addProfile()
- 10 core/lib/Drupal/Core/Extension/ModuleHandler.php \Drupal\Core\Extension\ModuleHandler::addProfile()
Adds an installation profile to the list of currently active modules.
Parameters
string $name: The profile name; e.g., 'standard'.
string $path: The profile path; e.g., 'core/profiles/standard'.
Overrides ModuleHandlerInterface::addProfile
File
- core/
lib/ Drupal/ Core/ Extension/ ModuleHandler.php, line 199
Class
- ModuleHandler
- Class that manages modules in a Drupal installation.
Namespace
Drupal\Core\ExtensionCode
public function addProfile($name, $path) {
$this
->add('profile', $name, $path);
}