1 upgrade.test protected UpgradePathTestCase::variable_set($name, $value)

Specialized variable_set() that works even if the child site is not upgraded.

Parameters

$name: The name of the variable to set.

$value: The value to set. This can be any PHP data type; these functions take care of serialization as necessary.

File

core/modules/simpletest/tests/upgrade/upgrade.test, line 132

Class

UpgradePathTestCase
Perform end-to-end tests of the upgrade path.

Code

protected function variable_set($name, $value) {
  db_delete('variable')
    ->condition('name', $name)
    ->execute();
  db_insert('variable')
    ->fields(array(
      'name' => $name,
      'value' => serialize($value),
    ))
    ->execute();

  try {
    cache()->delete('variables');
    cache('bootstrap')->delete('variables');
  }
  // Since cache_bootstrap won't exist in a Drupal 6 site, ignore the
  // exception if the above fails.
  catch (Exception $e) {
  }
}