View Categories

fluentform/form_settings_container_{$current_sub_route}

Description #

This hook runs before rendering the settings page container.

/*
* Source Action
*/
do_action('fluentform/form_settings_container_'.$current_sub_route, $form_id);

Usage #

add_action('fluentform/form_settings_container_form_settings', 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_wrapper.php