function backup_migrate_files_destination_filesource::get_location in Backup and Migrate Files 7
Get the location as a file path.
3 calls to backup_migrate_files_destination_filesource::get_location()
- backup_migrate_files_destination_filesource::backup_to_file in includes/
destinations.filesource.inc - Backup from this source.
- backup_migrate_files_destination_filesource::edit_form in includes/
destinations.filesource.inc - Get the form for the settings for the files destination.
- backup_migrate_files_destination_filesource::restore_from_file in includes/
destinations.filesource.inc - Restore to this source.
File
- includes/
destinations.filesource.inc, line 222 - A destination type for saving locally to the server.
Class
- backup_migrate_files_destination_filesource
- A destination type for saving locally to the server.
Code
function get_location() {
$out = parent::get_location();
return drupal_realpath($out);
}