nf_admin_before_form_list
The Ninja Forms nf admin before form list hook.
Description
do_action( 'nf_admin_before_form_list' );
Usage
- To run the hook, copy the example below.
- // run the action
- do_action( 'nf_admin_before_form_list' );
- The following example is for adding a hook callback.
- // define the nf_admin_before_form_list callback
- function action_nf_admin_before_form_list( ) {
- // make action magic happen here...
- };
- // add the action
- add_action( 'nf_admin_before_form_list', 'action_nf_admin_before_form_list', 10, 0 );
- To remove a hook callback, use the example below.
- // remove the action
- remove_action( 'nf_admin_before_form_list', 'action_nf_admin_before_form_list', 10, 0 );
Defined (2)
The action is defined in the following location(s).
- /includes/Templates/admin-menu-all-forms.html.php
- <?php do_action( 'nf_admin_before_form_list' ); ?>
- /deprecated/includes/admin/pages/ninja-forms/tabs/form-list/form-list.php
- do_action( 'nf_admin_before_form_list' );