nf_edit_field_settings_sections
The Ninja Forms nf edit field settings sections hook.
Description
Parameters (1)
- 0. $array — Optional. (callback) =>
array( 'restrictions' => __( 'Restriction Settings', 'ninja-forms' ), 'calculations' => __( 'Calculation Settings', 'ninja-forms' ), 'advanced' => __( 'Advanced Settings', 'ninja-forms' ), )
- The array.
Usage
- To run the hook, copy the example below.
- $array = apply_filters( 'nf_edit_field_settings_sections', $array );
- if ( !empty( $array ) ) {
- // everything has led up to this point...
- }
- The following example is for adding a hook callback.
- // define the nf_edit_field_settings_sections callback
- function filter_nf_edit_field_settings_sections( $array ) {
- // make filter magic happen here...
- return $array;
- };
- // add the filter
- add_filter( 'nf_edit_field_settings_sections', 'filter_nf_edit_field_settings_sections', 10, 1 );
- To remove a hook callback, use the example below.
- // remove the filter
- remove_filter( 'nf_edit_field_settings_sections', 'filter_nf_edit_field_settings_sections', 10, 1 );
Defined (1)
The filter is defined in the following location(s).
- /deprecated/includes/admin/edit-field/li.php
- $settings_sections = apply_filters( 'nf_edit_field_settings_sections', array(