Automattic\WooCommerce\Internal\Admin\Onboarding
OnboardingSetupWizard::is_woocommerce_page
Determine if the current page is one of the WC Admin pages.
Method of the class: OnboardingSetupWizard{}
No Hooks.
Returns
true|false.
Usage
// private - for code of main (parent) class only $result = $this->is_woocommerce_page();
OnboardingSetupWizard::is_woocommerce_page() OnboardingSetupWizard::is woocommerce page code WC 10.8.1
private function is_woocommerce_page() {
$current_page = PageController::get_instance()->get_current_page();
if ( ! $current_page || ! isset( $current_page['path'] ) ) {
return false;
}
return 0 === strpos( $current_page['path'], 'wc-admin' );
}