gform_after_check_update

Description

Runs a function after Gravity Forms has checked for an update.

Usage

add_action( 'gform_after_check_update', 'my_function', 10, 0 );

Parameters

There are not any parameters for this action.

Examples

function my_function() {
echo 'Update was checked';
}
add_action( 'gform_after_check_update', 'my_function', 10, 0 );

Source Code

This action hook is located in update.php.