1 cache-install.inc BackdropFakeCache::deletePrefix($cid)

Overrides BackdropDatabaseCache::deletePrefix().

Overrides BackdropDatabaseCache::deletePrefix

File

core/includes/cache-install.inc, line 67
Provides a stub cache implementation to be used during installation.

Class

BackdropFakeCache
Defines a stub cache implementation to be used during installation.

Code

function deletePrefix($cid) {
  try {
    if (class_exists('Database')) {
      parent::deletePrefix($cid);
    }
  }
  catch (Exception $e) {
  }
}