Edit File by line

Deprecated: str_replace(): Passing null to parameter #2 ($replace) of type array|string is deprecated in /home/sportsfever/public_html/filemanger/function.php on line 93
/home/sportsfe.../httpdocs/wp-conte.../plugins/popup-ma.../trunk/classes/Interfac.../Batch
File: Exporter.php
<?php
[0] Fix | Delete
/**
[1] Fix | Delete
* Interface for Batch Exporter
[2] Fix | Delete
*
[3] Fix | Delete
* @package PUM
[4] Fix | Delete
* @copyright Copyright (c) 2023, Code Atlantic LLC
[5] Fix | Delete
*/
[6] Fix | Delete
[7] Fix | Delete
if ( ! defined( 'ABSPATH' ) ) {
[8] Fix | Delete
exit;
[9] Fix | Delete
}
[10] Fix | Delete
[11] Fix | Delete
/**
[12] Fix | Delete
* Promise for structuring exporters.
[13] Fix | Delete
*
[14] Fix | Delete
* @since 1.7.0
[15] Fix | Delete
*/
[16] Fix | Delete
interface PUM_Interface_Batch_Exporter {
[17] Fix | Delete
[18] Fix | Delete
/**
[19] Fix | Delete
* Determines whether the current user can perform an export.
[20] Fix | Delete
*
[21] Fix | Delete
* @return bool Whether the current user can perform an export.
[22] Fix | Delete
*/
[23] Fix | Delete
public function can_export();
[24] Fix | Delete
[25] Fix | Delete
/**
[26] Fix | Delete
* Handles sending appropriate headers depending on the type of export.
[27] Fix | Delete
*
[28] Fix | Delete
* @return void
[29] Fix | Delete
*/
[30] Fix | Delete
public function headers();
[31] Fix | Delete
[32] Fix | Delete
/**
[33] Fix | Delete
* Retrieves the data for export.
[34] Fix | Delete
*
[35] Fix | Delete
* @return array[] Multi-dimensional array of data for export.
[36] Fix | Delete
*/
[37] Fix | Delete
public function get_data();
[38] Fix | Delete
[39] Fix | Delete
/**
[40] Fix | Delete
* Performs the export process.
[41] Fix | Delete
*
[42] Fix | Delete
* @return void
[43] Fix | Delete
*/
[44] Fix | Delete
public function export();
[45] Fix | Delete
[46] Fix | Delete
}
[47] Fix | Delete
[48] Fix | Delete
It is recommended that you Edit text format, this type of Fix handles quite a lot in one request
Function