function variable_del

Unsets a persistent variable.

Case-sensitivity of the variable_* functions depends on the database collation used. To avoid problems, always use lower case for persistent variable names.

Parameters

$name: The name of the variable to undefine.

See also

variable_get()

variable_set()

81 calls to variable_del()
aggregator_sanitize_configuration in drupal/modules/aggregator/aggregator.module
Checks and sanitizes the aggregator configuration.
aggregator_uninstall in drupal/modules/aggregator/aggregator.install
Implements hook_uninstall().
batch_test_stack in drupal/modules/simpletest/tests/batch_test.module
Helper function: store or retrieve traced execution data.
block_update_7004 in drupal/modules/block/block.install
Add new blocks to new regions, migrate custom variables to blocks.
blog_uninstall in drupal/modules/blog/blog.install
Implements hook_uninstall().

... See full list

File

drupal/includes/bootstrap.inc, line 1265
Functions that need to be loaded on every Drupal request.

Code

function variable_del($name) {
  global $conf;
  db_delete('variable')
    ->condition('name', $name)
    ->execute();
  cache_clear_all('variables', 'cache_bootstrap');
  unset($conf[$name]);
}