function ModuleInstaller::installSchema
Same name in other branches
- 10 core/lib/Drupal/Core/Extension/ModuleInstaller.php \Drupal\Core\Extension\ModuleInstaller::installSchema()
- 11.x core/lib/Drupal/Core/Extension/ModuleInstaller.php \Drupal\Core\Extension\ModuleInstaller::installSchema()
Creates all tables defined in a module's hook_schema().
@internal
Parameters
string $module: The module for which the tables will be created.
1 call to ModuleInstaller::installSchema()
- ModuleInstaller::install in core/
lib/ Drupal/ Core/ Extension/ ModuleInstaller.php - Installs a given list of modules.
File
-
core/
lib/ Drupal/ Core/ Extension/ ModuleInstaller.php, line 644
Class
- ModuleInstaller
- Default implementation of the module installer.
Namespace
Drupal\Core\ExtensionCode
protected function installSchema(string $module) : void {
$tables = $this->moduleHandler
->invoke($module, 'schema') ?? [];
$schema = $this->connection
->schema();
foreach ($tables as $name => $table) {
$schema->createTable($name, $table);
}
}
Buggy or inaccurate documentation? Please file an issue. Need support? Need help programming? Connect with the Drupal community.