function backup_migrate_destination::_file_info_filename in Backup and Migrate 8.3
Same name and namespace in other branches
- 6.3 includes/destinations.inc \backup_migrate_destination::_file_info_filename()
- 7.3 includes/destinations.inc \backup_migrate_destination::_file_info_filename()
- 7.2 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 924
Class
- backup_migrate_destination
- A base class for creating destinations.
Code
function _file_info_filename($file_id) {
return $file_id . '.info';
}