public function backup_migrate_destination_filesource::get_realpath in Backup and Migrate 7.3
Same name and namespace in other branches
- 8.3 includes/sources.filesource.inc \backup_migrate_destination_filesource::get_realpath()
- 6.3 includes/sources.filesource.inc \backup_migrate_destination_filesource::get_realpath()
Get the file location.
6 calls to backup_migrate_destination_filesource::get_realpath()
- backup_migrate_destination_filesource::get_excluded_paths in includes/
sources.filesource.inc - Breaks the excluded paths string into a usable list of paths.
- 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 331 - A destination type for saving locally to the server.
Class
- backup_migrate_destination_filesource
- A destination type for saving locally to the server.
Code
public function get_realpath() {
return drupal_realpath($this
->get_location());
}