function backup_file::put_contents in Backup and Migrate 6.3
Same name and namespace in other branches
- 8.2 includes/files.inc \backup_file::put_contents()
- 8.3 includes/files.inc \backup_file::put_contents()
- 6.2 includes/files.inc \backup_file::put_contents()
- 7.3 includes/files.inc \backup_file::put_contents()
- 7.2 includes/files.inc \backup_file::put_contents()
Write data to the file.
File
- includes/
files.inc, line 409 - 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 put_contents($data) {
file_put_contents($this
->filepath(), $data);
}