You are here

public function DirectoryDestination::getFile in Backup and Migrate 8.4

Get a file object representing the file with the given ID from the destination. This file item will not necessarily be readable nor will it have extended metadata loaded. Use loadForReading and loadFileMetadata to get those.

@TODO: Decide if extended metadata should ALWAYS be loaded here.

Parameters

string $id The unique identifier for the file. Usually the filename.:

Return value

\BackupMigrate\Core\File\BackupFileInterface The file if it exists or NULL if it doesn't

Overrides ReadableDestinationInterface::getFile

1 call to DirectoryDestination::getFile()
DirectoryDestination::_deleteFile in lib/backup_migrate_core/src/Destination/DirectoryDestination.php
Do the actual delete for a file.

File

lib/backup_migrate_core/src/Destination/DirectoryDestination.php, line 102

Class

DirectoryDestination
Class ServerDirectoryDestination.

Namespace

BackupMigrate\Core\Destination

Code

public function getFile($id) {
  if ($this
    ->fileExists($id)) {
    $out = new BackupFile();
    $out
      ->setMeta('id', $id);
    $out
      ->setFullName($id);
    return $out;
  }
  return NULL;
}