nf_success_message_locations
Output our edit screen.
Description
Parameters (1)
- 0. $array — Optional. (array) =>
array( array( 'action' => 'ninja_forms_display_before_fields', 'name' => __( 'Before Form', 'ninja-forms' ) ), array( 'action' => 'ninja_forms_display_after_fields', 'name' => __( 'After Form', 'ninja-forms' ) ), )
- The array.
Usage
- To run the hook, copy the example below.
- $array = apply_filters( 'nf_success_message_locations', $array );
- if ( !empty( $array ) ) {
- // everything has led up to this point...
- }
- The following example is for adding a hook callback.
- // define the nf_success_message_locations callback
- function filter_nf_success_message_locations( $array ) {
- // make filter magic happen here...
- return $array;
- };
- // add the filter
- add_filter( 'nf_success_message_locations', 'filter_nf_success_message_locations', 10, 1 );
- To remove a hook callback, use the example below.
- // remove the filter
- remove_filter( 'nf_success_message_locations', 'filter_nf_success_message_locations', 10, 1 );
Defined (1)
The filter is defined in the following location(s).
- /deprecated/classes/notification-success-message.php
- $loc_opts = apply_filters( 'nf_success_message_locations',