You appear to be a bot. Output may be restricted
Description
Retrieve the file data is written to
Usage
$string = EDD_Batch_Export::get_file();
Parameters
Returns
string
Source
File name: easy-digital-downloads/includes/admin/reporting/export/class-batch-export.php
Lines:
1 to 21 of 21
protected function get_file() { $file = ''; if ( @file_exists( $this->file ) ) { if ( ! is_writeable( $this->file ) ) { $this->is_writable = false; } $file = @file_get_contents( $this->file ); } else { @file_put_contents( $this->file, '' ); @chmod( $this->file, 0664 ); } return $file; }