ninja_forms_download_all_filename
The Ninja Forms ninja forms download all filename hook.
Description
Parameters (1)
- 0. $form_name_all_subs_today (string)
- The form name all subs today.
Usage
- To run the hook, copy the example below.
- $form_name_all_subs_today = apply_filters( 'ninja_forms_download_all_filename', $form_name_all_subs_today );
- if ( !empty( $form_name_all_subs_today ) ) {
- // everything has led up to this point...
- }
- The following example is for adding a hook callback.
- // define the ninja_forms_download_all_filename callback
- function filter_ninja_forms_download_all_filename( $form_name_all_subs_today ) {
- // make filter magic happen here...
- return $form_name_all_subs_today;
- };
- // add the filter
- add_filter( 'ninja_forms_download_all_filename', 'filter_ninja_forms_download_all_filename', 10, 1 );
- To remove a hook callback, use the example below.
- // remove the filter
- remove_filter( 'ninja_forms_download_all_filename', 'filter_ninja_forms_download_all_filename', 10, 1 );
Defined (1)
The filter is defined in the following location(s).
- /includes/Admin/Menus/Submissions.php
- $filename = apply_filters('ninja_forms_download_all_filename', $form_name . '-all-subs-' . $today);