Automattic\WooCommerce\Utilities

OrderUtil::is_order_list_table_screen()public staticWC 1.0

Check if the current admin screen is an order list table.

Метод класса: OrderUtil{}

Хуков нет.

Возвращает

true|false.

Использование

$result = OrderUtil::is_order_list_table_screen( $order_type ) : bool;
$order_type(строка)
The order type to check for.
По умолчанию: shop_order

Код OrderUtil::is_order_list_table_screen() WC 9.4.2

public static function is_order_list_table_screen( $order_type = 'shop_order' ) : bool {
	return wc_get_container()->get( PageController::class )->is_order_screen( $order_type, 'list' );
}