1 cache.inc | BackdropDatabaseCache::delete($cid) |
Implements BackdropCacheInterface::delete().
Overrides BackdropCacheInterface::delete
File
- core/
includes/ cache.inc, line 550 - Functions and interfaces for cache handling.
Class
- BackdropDatabaseCache
- Defines a default cache implementation.
Code
function delete($cid) {
db_delete($this->bin)
->condition('cid', $cid)
->execute();
}