View Categories

fluentform/after_form_navigation

Description #

This action runs after the admin page header to add navigation buttons.

/*
* Source Action
*/
do_action('fluentform/after_form_navigation', $form_id, $route);

Usage #

add_action('fluentform/after_form_navigation', 'custom_function', 10, 2);

function custom_function( $form_id, $route)
{
   // Do your stuff here
  $myCustomBttnLink ='<a href="#" class="custom"> Custom </a>';
  echo $myCustomBttnLink;
  return;
}

Parameters #

  • $form_id (int) Form ID
  • $route (string) Current Route

Source Code #

This action is located in fluentform/app/Views/admin/form/form_wrapper.php