Before rendering the form settings page this hook is available.
Description #
This action fires after fluentform plugin is loaded.
/*
* Source Action
*/
do_action('fluentform/before_form_settings_app', $form_id);
Usage #
add_action('fluentform/before_form_settings_app', function ($form_id)
{
// Do your stuffs here
}, 10, 1);
This code should be placed in the functions.php file of your active theme.
Parameters #
- $form_id (int) Form ID
Source Code #
This action is located in fluentform/app/Views/admin/form/settings.php