You appear to be a bot. Output may be restricted
Description
Validates if the row is within the offset or not if sorting is disabled
Usage
parseCSV::_validate_offset( $current_row );
Parameters
- $current_row
- ( mixed ) required –
Returns
void true of false
Source
File name: easy-digital-downloads/includes/libraries/parsecsv.lib.php
Lines:
1 to 7 of 7
protected function _validate_offset($current_row) { if ($this->sort_by === null && $this->offset !== null && $current_row < $this->offset) { return false; } return true; }