You are here

function backup_file::filepath in Backup and Migrate 8.2

Same name and namespace in other branches
  1. 8.3 includes/files.inc \backup_file::filepath()
  2. 6.3 includes/files.inc \backup_file::filepath()
  3. 6.2 includes/files.inc \backup_file::filepath()
  4. 7.3 includes/files.inc \backup_file::filepath()
  5. 7.2 includes/files.inc \backup_file::filepath()

Get the current filepath.

5 calls to backup_file::filepath()
backup_file::get_contents in includes/files.inc
Read data from the file.
backup_file::open in includes/files.inc
Open a file for reading or writing.
backup_file::pop_type in includes/files.inc
Push a file extension onto the file and return the previous file path.
backup_file::push_type in includes/files.inc
Push a file extension onto the file and return the previous file path.
backup_file::put_contents in includes/files.inc
Write data to the file.

File

includes/files.inc, line 146
General file handling code for Backup and Migrate.

Class

backup_file
A backup file which allows for saving to and reading from the server.

Code

function filepath() {
  return drupal_realpath($this->path);
}