ninja_forms_merge_tags_form
|-------------------------------------------------------------------------- | Display ONLY |-------------------------------------------------------------------------- | These merge tags are for display only and are processed elsewhere.
Description
Parameters (1)
- 0. $array — Optional. (callback) =>
array('sub_seq' => array( 'id' => 'sub_seq', 'tag' => '{submission:sequence}', 'label' => __( 'Sub Sequence', 'ninja_forms' ), 'callback' => 'getSubSeq', ),'all_fields_table' => array( 'id' => 'all_fields_table', 'tag' => '{all_fields_table}', 'label' => __( 'All Fields Table', 'ninja_forms' ), 'callback' => '', ),'fields_table' => array( 'id' => 'fields_table', 'tag' => '{fields_table}', 'label' => __( 'Fields Table', 'ninja_forms' ), 'callback' => '', ),)
- The array.
Usage
- To run the hook, copy the example below.
- $array = apply_filters( 'ninja_forms_merge_tags_form', $array );
- if ( !empty( $array ) ) {
- // everything has led up to this point...
- }
- The following example is for adding a hook callback.
- // define the ninja_forms_merge_tags_form callback
- function filter_ninja_forms_merge_tags_form( $array ) {
- // make filter magic happen here...
- return $array;
- };
- // add the filter
- add_filter( 'ninja_forms_merge_tags_form', 'filter_ninja_forms_merge_tags_form', 10, 1 );
- To remove a hook callback, use the example below.
- // remove the filter
- remove_filter( 'ninja_forms_merge_tags_form', 'filter_ninja_forms_merge_tags_form', 10, 1 );
Defined (1)
The filter is defined in the following location(s).
- /includes/Config/MergeTagsForm.php
- return apply_filters( 'ninja_forms_merge_tags_form', array(