ninja_forms_dashboard_menu_items
The Ninja Forms ninja forms dashboard menu items hook.
Description
Parameters (1)
- 0. $array — Optional. (callback) =>
array('widgets' => array( 'slug' => 'widgets', 'niceName' => __( 'Forms', 'ninja-forms' ), ), 'apps' => array( 'slug' => 'apps', 'niceName' => __( 'Apps & Integrations', 'ninja-forms' ), ), 'memberships' => array( 'slug' => 'memberships', 'niceName' => __( 'Memberships', 'ninja-forms' ), ) )
- The array.
Usage
- To run the hook, copy the example below.
- $array = apply_filters( 'ninja_forms_dashboard_menu_items', $array );
- if ( !empty( $array ) ) {
- // everything has led up to this point...
- }
- The following example is for adding a hook callback.
- // define the ninja_forms_dashboard_menu_items callback
- function filter_ninja_forms_dashboard_menu_items( $array ) {
- // make filter magic happen here...
- return $array;
- };
- // add the filter
- add_filter( 'ninja_forms_dashboard_menu_items', 'filter_ninja_forms_dashboard_menu_items', 10, 1 );
- To remove a hook callback, use the example below.
- // remove the filter
- remove_filter( 'ninja_forms_dashboard_menu_items', 'filter_ninja_forms_dashboard_menu_items', 10, 1 );
Defined (1)
The filter is defined in the following location(s).
- /includes/Config/DashboardMenuItems.php
- return apply_filters( 'ninja_forms_dashboard_menu_items', array(