nf_new_form_defaults
Listen for a new form action and create one if necessary.
Description
Parameters (1)
- 0. $array — Optional. (callback) =>
array( 'clear_complete' => 1, 'hide_complete' => 1, 'show_title' => 0, 'status' => 'new', )
- The array.
Usage
- To run the hook, copy the example below.
- $array = apply_filters( 'nf_new_form_defaults', $array );
- if ( !empty( $array ) ) {
- // everything has led up to this point...
- }
- The following example is for adding a hook callback.
- // define the nf_new_form_defaults callback
- function filter_nf_new_form_defaults( $array ) {
- // make filter magic happen here...
- return $array;
- };
- // add the filter
- add_filter( 'nf_new_form_defaults', 'filter_nf_new_form_defaults', 10, 1 );
- To remove a hook callback, use the example below.
- // remove the filter
- remove_filter( 'nf_new_form_defaults', 'filter_nf_new_form_defaults', 10, 1 );
Defined (1)
The filter is defined in the following location(s).
- /deprecated/includes/admin/pages/ninja-forms/tabs/field-settings/field-settings.php
- $defaults = apply_filters( 'nf_new_form_defaults', array(