You are here

function backup_migrate_destination::file_cache_clear in Backup and Migrate 8.2

Same name and namespace in other branches
  1. 8.3 includes/destinations.inc \backup_migrate_destination::file_cache_clear()
  2. 6.3 includes/destinations.inc \backup_migrate_destination::file_cache_clear()
  3. 6.2 includes/destinations.inc \backup_migrate_destination::file_cache_clear()
  4. 7.3 includes/destinations.inc \backup_migrate_destination::file_cache_clear()
  5. 7.2 includes/destinations.inc \backup_migrate_destination::file_cache_clear()

Retrieve the file list.

2 calls to backup_migrate_destination::file_cache_clear()
backup_migrate_destination::delete_file in includes/destinations.inc
Delete the file with the given destination specific id.
backup_migrate_destination::save_file in includes/destinations.inc
Save the given file to the destination.

File

includes/destinations.inc, line 708

Class

backup_migrate_destination
A base class for creating destinations.

Code

function file_cache_clear() {
  if ($this->cache_files) {
    $this
      ->file_cache_set(NULL);
  }
}