function DbUpdatesTrait::enableUpdates
Same name in this branch
- 8.9.x core/modules/system/tests/src/Functional/Update/DbUpdatesTrait.php \Drupal\Tests\system\Functional\Update\DbUpdatesTrait::enableUpdates()
Enables db updates until the specified index.
Parameters
string $module: The name of the module defining the update functions.
string $group: A name identifying the group of update functions to enable.
$index: The index of the last update function to run.
File
-
core/
modules/ system/ src/ Tests/ Update/ DbUpdatesTrait.php, line 34
Class
- DbUpdatesTrait
- Provides methods to conditionally enable db update functions and apply pending db updates through the Update UI.
Namespace
Drupal\system\Tests\UpdateCode
protected function enableUpdates($module, $group, $index) {
$this->container
->get('state')
->set($module . '.db_updates.' . $group, $index);
}
Buggy or inaccurate documentation? Please file an issue. Need support? Need help programming? Connect with the Drupal community.