You are here

protected function DbUpdatesTrait::enableUpdates in Drupal 8

Same name in this branch
  1. 8 core/modules/system/src/Tests/Update/DbUpdatesTrait.php \Drupal\system\Tests\Update\DbUpdatesTrait::enableUpdates()
  2. 8 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\Update

Code

protected function enableUpdates($module, $group, $index) {
  $this->container
    ->get('state')
    ->set($module . '.db_updates.' . $group, $index);
}