protected function DbUpdatesTrait::enableUpdates in Zircon Profile 8
Same name and namespace in other branches
- 8.0 core/modules/system/src/Tests/Update/DbUpdatesTrait.php \Drupal\system\Tests\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.
3 calls to DbUpdatesTrait::enableUpdates()
- UpdateApiEntityDefinitionUpdateTest::testMultipleUpdates in core/
modules/ system/ src/ Tests/ Entity/ Update/ UpdateApiEntityDefinitionUpdateTest.php - Tests that multiple updates applied in bulk work as expected.
- UpdateApiEntityDefinitionUpdateTest::testSingleUpdates in core/
modules/ system/ src/ Tests/ Entity/ Update/ UpdateApiEntityDefinitionUpdateTest.php - Tests that individual updates applied sequentially work as expected.
- UpdateApiEntityDefinitionUpdateTest::testStatusReport in core/
modules/ system/ src/ Tests/ Entity/ Update/ UpdateApiEntityDefinitionUpdateTest.php - Tests that entity updates are correctly reported in the status report page.
File
- core/
modules/ system/ src/ Tests/ Update/ DbUpdatesTrait.php, line 33 - Contains \Drupal\system\Tests\Update\DbUpdatesTrait.
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);
}