protected function UpgradePathTestCase::variable_set

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.

5 calls to UpgradePathTestCase::variable_set()
LocaleUpgradePathTestCase::testLocaleUpgradeDomain in drupal/modules/simpletest/tests/upgrade/upgrade.locale.test
Test an upgrade with domain-based negotiation.
LocaleUpgradePathTestCase::testLocaleUpgradePathDefault in drupal/modules/simpletest/tests/upgrade/upgrade.locale.test
Test an upgrade with path-based negotiation.
LocaleUpgradePathTestCase::testLocaleUpgradePathFallback in drupal/modules/simpletest/tests/upgrade/upgrade.locale.test
Test an upgrade with path-based (with fallback) negotiation.
UpgradePathTestCase::setUp in drupal/modules/simpletest/tests/upgrade/upgrade.test
Overrides DrupalWebTestCase::setUp() for upgrade testing.
UploadUpgradePathTestCase::setUp in drupal/modules/simpletest/tests/upgrade/upgrade.upload.test
Overrides DrupalWebTestCase::setUp() for upgrade testing.

File

drupal/modules/simpletest/tests/upgrade/upgrade.test, line 169

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_clear_all('variables', 'cache');
    cache_clear_all('variables', 'cache_bootstrap');
  } catch (Exception $e) {
  }
}