You are here

public function backup_migrate_destination::_file_info_file in Backup and Migrate 7.3

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

Create the info file object.

1 call to backup_migrate_destination::_file_info_file()
backup_migrate_destination::create_info_file in includes/destinations.inc
Create an ini file and write the meta data.

File

includes/destinations.inc, line 959

Class

backup_migrate_destination
A base class for creating destinations.

Code

public function _file_info_file($file) {
  $info = new backup_file(array(
    'filename' => $this
      ->_file_info_filename($file
      ->file_id()),
  ));
  return $info;
}