You are here

function backup_migrate_destination::_file_info_filename in Backup and Migrate 7.2

Same name and namespace in other branches
  1. 8.3 includes/destinations.inc \backup_migrate_destination::_file_info_filename()
  2. 6.3 includes/destinations.inc \backup_migrate_destination::_file_info_filename()
  3. 7.3 includes/destinations.inc \backup_migrate_destination::_file_info_filename()

Determine the file name of the info file for a file.

2 calls to backup_migrate_destination::_file_info_filename()
backup_migrate_destination::delete_file in includes/destinations.inc
Delete the file with the given destination specific id.
backup_migrate_destination::_file_info_file in includes/destinations.inc
Create the info file object.

File

includes/destinations.inc, line 720

Class

backup_migrate_destination
A base class for creating destinations.

Code

function _file_info_filename($file_id) {
  return $file_id . '.info';
}