ninja_forms_field_settings_groups
The Ninja Forms ninja forms field settings groups hook.
Description
Parameters (1)
- 0. $array — Optional. (callback) =>
array('primary' => array( 'id' => 'primary', 'label' => '', 'display' => TRUE, 'priority' => 100 ),'rte' => array( 'id' => 'rte', 'label' => __( 'Rich Text Editor (RTE)', 'ninja-forms' ) ),'restrictions' => array( 'id' => 'restrictions', 'label' => __( 'Restrictions', 'ninja-forms' ) ),'display' => array( 'id' => 'display', 'label' => __( 'Display', 'ninja-forms' ), 'priority' => 700 ),'advanced' => array( 'id' => 'advanced', 'label' => __( 'Advanced', 'ninja-forms' ), 'priority' => 800 ),'administration' => array( 'id' => 'administration', 'label' => __( 'Administration', 'ninja-forms' ), 'priority' => 900 ))
- The array.
Usage
- To run the hook, copy the example below.
- $array = apply_filters( 'ninja_forms_field_settings_groups', $array );
- if ( !empty( $array ) ) {
- // everything has led up to this point...
- }
- The following example is for adding a hook callback.
- // define the ninja_forms_field_settings_groups callback
- function filter_ninja_forms_field_settings_groups( $array ) {
- // make filter magic happen here...
- return $array;
- };
- // add the filter
- add_filter( 'ninja_forms_field_settings_groups', 'filter_ninja_forms_field_settings_groups', 10, 1 );
- To remove a hook callback, use the example below.
- // remove the filter
- remove_filter( 'ninja_forms_field_settings_groups', 'filter_ninja_forms_field_settings_groups', 10, 1 );
Defined (1)
The filter is defined in the following location(s).
- /includes/Config/SettingsGroups.php
- return apply_filters( 'ninja_forms_field_settings_groups', array(