gform_settings_SUBVIEW

gform_settings_SUBVIEW

DescriptionUsageParametersExamplesSource Code

Description
Triggered within the settings page, depending on what page within the settings you are viewing. SUBVIEW is replaced with the specific subview that the action should be fired on.
Usage
add_action( 'gform_settings_gravityformswebapi', 'my_function', 10, 1 );

Parameters

$subview string
The subview of the settings page that the action is being triggered on.

Examples
function my_function() {
//Do something here
}
add_action( 'gform_settings_gravityformswebapi', 'my_function', 10, 1 );

Source Code
This action hook is located in settings.php.

发表回复

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