You are here

function HTMLPurifier_DefinitionCache_Drupal::remove in HTML Purifier 5

Same name and namespace in other branches
  1. 6.2 HTMLPurifier_DefinitionCache_Drupal.php \HTMLPurifier_DefinitionCache_Drupal::remove()
  2. 6 HTMLPurifier_DefinitionCache_Drupal.php \HTMLPurifier_DefinitionCache_Drupal::remove()
  3. 7.2 HTMLPurifier_DefinitionCache_Drupal.php \HTMLPurifier_DefinitionCache_Drupal::remove()
  4. 7 HTMLPurifier_DefinitionCache_Drupal.php \HTMLPurifier_DefinitionCache_Drupal::remove()

Delete an object from the cache

File

./HTMLPurifier_DefinitionCache_Drupal.php, line 70

Class

HTMLPurifier_DefinitionCache_Drupal
Cache handler that stores all data in drupals builtin cache

Code

function remove($config) {
  $key = $this
    ->generateKey($config);
  cache_clear_all("htmlpurifier:{$key}", 'cache');
  return true;
}