WC_Admin_List_Table::request_query()publicWC 1.0

Handle any filters.

Method of the class: WC_Admin_List_Table{}

No Hooks.

Return

Array.

Usage

$WC_Admin_List_Table = new WC_Admin_List_Table();
$WC_Admin_List_Table->request_query( $query_vars );
$query_vars(array) (required)
Query vars.

WC_Admin_List_Table::request_query() code WC 8.7.0

public function request_query( $query_vars ) {
	global $typenow;

	if ( $this->list_table_type === $typenow ) {
		return $this->query_filters( $query_vars );
	}

	return $query_vars;
}