ninja_forms_field_load_settings
The Ninja Forms ninja forms field load settings hook.
Description
apply_filters( 'ninja_forms_field_load_settings', (unknown) $settings, (string) $this_name, (unknown) $this_get_parent_type );
Parameters (3)
- 0. $settings (unknown)
- The settings.
- 1. $this_name (string)
- The this name.
- 2. $this_get_parent_type (unknown)
- The this get parent type.
Usage
- To run the hook, copy the example below.
- $settings = apply_filters( 'ninja_forms_field_load_settings', $settings, $this_name, $this_get_parent_type );
- if ( !empty( $settings ) ) {
- // everything has led up to this point...
- }
- The following example is for adding a hook callback.
- // define the ninja_forms_field_load_settings callback
- function filter_ninja_forms_field_load_settings( $settings, $this_name, $this_get_parent_type ) {
- // make filter magic happen here...
- return $settings;
- };
- // add the filter
- add_filter( 'ninja_forms_field_load_settings', 'filter_ninja_forms_field_load_settings', 10, 3 );
- To remove a hook callback, use the example below.
- // remove the filter
- remove_filter( 'ninja_forms_field_load_settings', 'filter_ninja_forms_field_load_settings', 10, 3 );
Defined (1)
The filter is defined in the following location(s).
- /includes/Abstracts/Field.php
- return $settings = apply_filters( 'ninja_forms_field_load_settings', $settings, $this->_name, $this->get_parent_type() );