ninja_forms_admin_import_template_capabilities
The Ninja Forms ninja forms admin import template capabilities hook.
Description
Parameters (1)
- 0. $manage_options (string) =>
'manage_options'
- The manage options.
Usage
- To run the hook, copy the example below.
- $manage_options = apply_filters( 'ninja_forms_admin_import_template_capabilities', $manage_options );
- if ( !empty( $manage_options ) ) {
- // everything has led up to this point...
- }
- The following example is for adding a hook callback.
- // define the ninja_forms_admin_import_template_capabilities callback
- function filter_ninja_forms_admin_import_template_capabilities( $manage_options ) {
- // make filter magic happen here...
- return $manage_options;
- };
- // add the filter
- add_filter( 'ninja_forms_admin_import_template_capabilities', 'filter_ninja_forms_admin_import_template_capabilities', 10, 1 );
- To remove a hook callback, use the example below.
- // remove the filter
- remove_filter( 'ninja_forms_admin_import_template_capabilities', 'filter_ninja_forms_admin_import_template_capabilities', 10, 1 );
Defined (1)
The filter is defined in the following location(s).
- /includes/Admin/Menus/Forms.php
- if( current_user_can( apply_filters( 'ninja_forms_admin_import_template_capabilities', 'manage_options' ) ) ) {