UpgradePathTestCase::variable_set

7 upgrade.test protected UpgradePathTestCase::variable_set($name, $value)
8 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

modules/simpletest/tests/upgrade/upgrade.test, line 243

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_clear_all('variables', 'cache');
    cache_clear_all('variables', 'cache_bootstrap');
  }
  // Since cache_bootstrap won't exist in a Drupal 6 site, ignore the
  // exception if the above fails.
  catch (Exception $e) {
  }
}
Login or register to post comments