You appear to be a bot. Output may be restricted
Description
Set the properties specific to the Customers export
Usage
EDD_Batch_Customers_Export::set_properties( $request );
Parameters
- $request
- ( array ) required – The Form Data passed into the batch processing
Returns
void
Source
File name: easy-digital-downloads/includes/admin/reporting/export/class-batch-export-customers.php
Lines:
1 to 6 of 6
public function set_properties( $request ) { $this->start = isset( $request['start'] ) ? sanitize_text_field( $request['start'] ) : ''; $this->end = isset( $request['end'] ) ? sanitize_text_field( $request['end'] ) : ''; $this->download = isset( $request['download'] ) ? absint( $request['download'] ) : null; $this->price_id = ! empty( $request['edd_price_option'] ) && 0 !== $request['edd_price_option'] ? absint( $request['edd_price_option'] ) : null; }