jetpack_forms_log, webhook_skipped, url_empty

jetpack_forms_log, webhook_skipped, url_empty

Appears in:
Hook Type: action

See hook in core

Displaying hooks found in version: jetpack.16.0.1

do_action('jetpack_forms_log, webhook_skipped, url_empty') is found 1 times:

  • /jetpack_vendor/automattic/jetpack-forms/src/service/class-form-webhooks.php line 360
    				continue;
    			}
    			// Validate webhook configuration
    			if ( empty( $setup['url'] ) ) {
    				do_action( 'jetpack_forms_log', 'webhook_skipped', 'url_empty' );
    				continue;
    			}
    
    			// Validate URL for security (SSRF protection)
    			$url_validation = $this->validate_webhook_url( $setup['url'] );
    			if ( is_wp_error( $url_validation ) ) {