gform_hipchat_verify_ssl

gform_hipchat_verify_ssl

DescriptionUsageExamplesPlacementSource Code

Description
The 「gform_hipchat_verify_ssl」 filter in the Gravity Forms HipChat Add-On allows the verification of HipChat SSL to be enabled or disabled.
Usage
add_filter( 'gform_hipchat_verify_ssl', 'your_function_name', 10, 1 );

## Parameters
– **$verify_ssl** bool
True or False to verify SSL.

Examples
add_filter( 'gform_hipchat_verify_ssl', 'set_ssl', 10, 1 );
function set_ssl( $verify_ssl ){
return false;
}

Placement
This code should be placed in the functions.php file of your active theme.
Source Code
This filter is located in GFHipChat::initialize_api() in gravityformshipchat/class-gf-hipchat.php.

发表回复

您的电子邮箱地址不会被公开。 必填项已用 * 标注