WC_Admin_List_Table::request_query() public WC 1.0
Handle any filters.
{} Это метод класса: WC_Admin_List_Table{}
Хуков нет.
Возвращает
Массив.
Использование
$WC_Admin_List_Table = new WC_Admin_List_Table(); $WC_Admin_List_Table->request_query( $query_vars );
- $query_vars(массив) (обязательный)
- Query vars.
Код WC_Admin_List_Table::request_query() WC Admin List Table::request query WC 5.0.0
public function request_query( $query_vars ) {
global $typenow;
if ( $this->list_table_type === $typenow ) {
return $this->query_filters( $query_vars );
}
return $query_vars;
}