You appear to be a bot. Output may be restricted
Description
Constructs the limits segment of the SQL request.
Usage
$string = EDD_Customer_Query::construct_request_limits();
Parameters
Returns
string SQL limits segment.
Source
File name: easy-digital-downloads/includes/class-edd-customer-query.php
Lines:
1 to 11 of 11
protected function construct_request_limits() { if ( $this->query_vars['number'] ) { if ( $this->query_vars['offset'] ) { return "LIMIT {$this->query_vars['offset']},{$this->query_vars['number']}"; } return "LIMIT {$this->query_vars['number']}"; } return ''; }