ninja_forms_save_admin_sidebar
The Ninja Forms ninja forms save admin sidebar hook.
Description
do_action( 'ninja_forms_save_admin_sidebar', (unknown) $slug, (unknown) $form_id, (unknown) $data_array );
Parameters (3)
- 0. $slug (unknown)
- The slug.
- 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_sidebar', $slug, $form_id, $data_array );
- The following example is for adding a hook callback.
- // define the ninja_forms_save_admin_sidebar callback
- function action_ninja_forms_save_admin_sidebar( $slug, $form_id, $data_array ) {
- // make action magic happen here...
- };
- // add the action
- add_action( 'ninja_forms_save_admin_sidebar', 'action_ninja_forms_save_admin_sidebar', 10, 3 );
- To remove a hook callback, use the example below.
- // remove the action
- remove_action( 'ninja_forms_save_admin_sidebar', 'action_ninja_forms_save_admin_sidebar', 10, 3 );
Defined (1)
The action is defined in the following location(s).
- /deprecated/includes/admin/save.php
- do_action( 'ninja_forms_save_admin_sidebar', $slug, $form_id, $data_array );