View Categories

fluentform/before_editor_start

Table of Contents

Description #

This action runs before the fluent form editor in the admin panel. If you need to do anything in the background you can use this action.

/*
* Source Action
*/
do_action('fluentform_before_editor_start');

Usage #

add_action('fluentform/before_editor_start', 'custom_function', 10, 0);

function custom_function()
{
   // Do your stuff here
}

Source Code #

This hook is located in fluentform/app/Views/admin/form/editor.php