You are here

public function SystemTable::setBootstrapModules in X Autoload 7.5

Parameters

true[] $bootstrap_modules:

File

tests/src/VirtualDrupal/SystemTable.php, line 312

Class

SystemTable
Virtual Drupal database / persistence layer.

Namespace

Drupal\xautoload\Tests\VirtualDrupal

Code

public function setBootstrapModules($bootstrap_modules) {
  foreach ($this->systemTableData as $name => $record) {
    $record['bootstrap'] = empty($bootstrap_modules[$name]) ? 0 : 1;
  }
}