ninja_forms_save_admin_tab
The Ninja Forms ninja forms save admin tab hook.
Description
do_action( 'ninja_forms_save_admin_tab', (unknown) $current_tab, (unknown) $form_id, (unknown) $data_array );
Parameters (3)
- 0. $current_tab (unknown)
- The current tab.
- 1. $form_id (unknown)
- The form id.
- 2. $data_array (unknown)
- The data array.
Usage
- To run the hook, copy the example below.
- // run the action
- do_action( 'ninja_forms_save_admin_tab', $current_tab, $form_id, $data_array );
- The following example is for adding a hook callback.
- // define the ninja_forms_save_admin_tab callback
- function action_ninja_forms_save_admin_tab( $current_tab, $form_id, $data_array ) {
- // make action magic happen here...
- };
- // add the action
- add_action( 'ninja_forms_save_admin_tab', 'action_ninja_forms_save_admin_tab', 10, 3 );
- To remove a hook callback, use the example below.
- // remove the action
- remove_action( 'ninja_forms_save_admin_tab', 'action_ninja_forms_save_admin_tab', 10, 3 );
Defined (1)
The action is defined in the following location(s).
- /deprecated/includes/admin/save.php
- do_action( 'ninja_forms_save_admin_tab', $current_tab, $form_id, $data_array );