gform_settings_SUBVIEW

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.