Full ELMS Learning Network documentation
function backup_migrate_destination::save_file_info
cis7 destinations.inc | backup_migrate_destination::save_file_info($file, $settings) |
cle7 destinations.inc | backup_migrate_destination::save_file_info($file, $settings) |
elmsmedia7 destinations.inc | backup_migrate_destination::save_file_info($file, $settings) |
icor7 destinations.inc | backup_migrate_destination::save_file_info($file, $settings) |
meedjum_blog7 destinations.inc | backup_migrate_destination::save_file_info($file, $settings) |
mooc7 destinations.inc | backup_migrate_destination::save_file_info($file, $settings) |
Save the file metadata
1 call to backup_migrate_destination::save_file_info()
- backup_migrate_destination::save_file in sites/
all/ modules/ ulmus/ backup_migrate/ includes/ destinations.inc - Save the given file to the destination.
File
- sites/
all/ modules/ ulmus/ backup_migrate/ includes/ destinations.inc, line 633 - All of the destination handling code needed for Backup and Migrate.
Class
- backup_migrate_destination
- A base class for creating destinations.
Code
function save_file_info($file, $settings) {
$info = $this->create_info_file($file);
// Save the info file and the actual file.
return $this->_save_file($info, $settings);
}