WC_CSV_Batch_Exporter::get_file_path
Get file path to export to.
Метод класса: WC_CSV_Batch_Exporter{}
Хуков нет.
Возвращает
Строку.
Использование
// protected - в коде основоного (родительского) или дочернего класса $result = $this->get_file_path();
Код WC_CSV_Batch_Exporter::get_file_path() WC CSV Batch Exporter::get file path WC 10.8.1
protected function get_file_path() {
$upload_dir = wp_upload_dir();
return trailingslashit( $upload_dir['basedir'] ) . $this->get_filename();
}