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.
WC_Admin_Webhooks::is_webhook_settings_page()
Check if is webhook settings page.
Description Description
Return Return
(bool)
Source Source
File: includes/admin/class-wc-admin-webhooks.php
private function is_webhook_settings_page() { return isset( $_GET['page'], $_GET['tab'], $_GET['section'] ) && 'wc-settings' === $_GET['page'] && 'advanced' === $_GET['tab'] && 'webhooks' === $_GET['section']; // WPCS: input var okay, CSRF ok. }