This action runs before rendering any addon page, for example, a PDF addon.
Description #
This action fires after fluentform plugin is loaded.
/*
* Source Action
*/
do_action('fluentform/addons_page_render_' . $current_menu_item);
Usage #
add_action('fluentform/addons_page_render_fluentform_pdf', function ()
{
// Do your stuffs here
}, 10, 0);
This code should be placed in the functions.php file of your active theme.
Source Code #
This hook is located in /fluentform/resources/views/admin/addons/index.php