You are here

function backup_migrate_destination_filesource::get_realpath in Backup and Migrate 6.3

Same name and namespace in other branches
  1. 8.3 includes/sources.filesource.inc \backup_migrate_destination_filesource::get_realpath()
  2. 7.3 includes/sources.filesource.inc \backup_migrate_destination_filesource::get_realpath()

Get the file location.

4 calls to backup_migrate_destination_filesource::get_realpath()
backup_migrate_destination_filesource::_backup_to_file_cli in includes/sources.filesource.inc
Backup from this source.
backup_migrate_destination_filesource::_backup_to_file_php in includes/sources.filesource.inc
Backup from this source.
backup_migrate_destination_filesource::_restore_from_file_cli in includes/sources.filesource.inc
Restore to this source.
backup_migrate_destination_filesource::_restore_from_file_php in includes/sources.filesource.inc
Restore to this source.

File

includes/sources.filesource.inc, line 306
A destination type for saving locally to the server.

Class

backup_migrate_destination_filesource
A destination type for saving locally to the server.

Code

function get_realpath() {
  return drupal_realpath($this
    ->get_location());
}