WooCommerce Code Reference

Query extends GenericQuery
in package

API\Reports\Customers\Query

Table of Contents

$name  : string
Specific query name.
$query_vars  : array<string|int, mixed>
Stores query data.
__construct()  : mixed
Create a new query.
get()  : mixed
Get the value of a query variable.
get_data()  : mixed
Get data from `report-{$name}` store, based on the current query vars.
get_query_vars()  : array<string|int, mixed>
Get the current query vars.
set()  : mixed
Set a query variable.
get_default_query_vars()  : array<string|int, mixed>
Valid fields for Customers report.

Properties

$name

Specific query name.

protected string $name = 'customers'

Will be used to load the report-{name} data store, and to call woocommerce_analytics_{snake_case(name)}_* filters.

Methods

__construct()

Create a new query.

public __construct([array<string|int, mixed> $args = array() ]) : mixed
Parameters
$args : array<string|int, mixed> = array()

Criteria to query on in a format similar to WP_Query.

Return values
mixed

get()

Get the value of a query variable.

public get(string $query_var[, mixed $default = '' ]) : mixed
Parameters
$query_var : string

Query variable to get value for.

$default : mixed = ''

Default value if query variable is not set.

Return values
mixedQuery variable value if set, otherwise default.

get_data()

Get data from `report-{$name}` store, based on the current query vars.

public get_data() : mixed

Filters query vars through woocommerce_analytics_{snake_case(name)}_query_args filter. Filters results through woocommerce_analytics_{snake_case(name)}_select_query filter.

Return values
mixedfiltered results from the data store.

set()

Set a query variable.

public set(string $query_var, mixed $value) : mixed
Parameters
$query_var : string

Query variable to set.

$value : mixed

Value to set for query variable.

Return values
mixed

get_default_query_vars()

Valid fields for Customers report.

protected get_default_query_vars() : array<string|int, mixed>
Return values
array<string|int, mixed>