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
86 calls to variable_del()
- aggregator_sanitize_configuration in modules/
aggregator/ aggregator.module - Checks and sanitizes the aggregator configuration.
- aggregator_uninstall in modules/
aggregator/ aggregator.install - Implements hook_uninstall().
- batch_test_stack in modules/
simpletest/ tests/ batch_test.module - Helper function: store or retrieve traced execution data.
- block_update_7004 in modules/
block/ block.install - Add new blocks to new regions, migrate custom variables to blocks.
- blog_uninstall in modules/
blog/ blog.install - Implements hook_uninstall().
File
-
includes/
bootstrap.inc, line 1333
Code
function variable_del($name) {
global $conf;
db_delete('variable')->condition('name', $name)
->execute();
cache_clear_all('variables', 'cache_bootstrap');
unset($conf[$name]);
}
Buggy or inaccurate documentation? Please file an issue. Need support? Need help programming? Connect with the Drupal community.