Alert: This function’s access is marked private. This means it is not intended for use by plugin or theme developers, only in other core functions. It is listed here for completeness.
WooCommerce::is_request( string $type )
What type of request is this?
Description Description
Parameters Parameters
- $type
-
(Required) admin, ajax, cron or frontend.
Return Return
(bool)
Source Source
File: includes/class-woocommerce.php
private function is_request( $type ) { switch ( $type ) { case 'admin': return is_admin(); case 'ajax': return defined( 'DOING_AJAX' ); case 'cron': return defined( 'DOING_CRON' ); case 'frontend': return ( ! is_admin() || defined( 'DOING_AJAX' ) ) && ! defined( 'DOING_CRON' ) && ! $this->is_rest_api_request(); } }