Description #
This filter is used to return the addon menu list.
apply_filters('fluentform/addons_extra_menu', $extraMenus);
Usage #
add_filter('fluentform/addons_extra_menu', function ($menus) {
$menus['fluentform_pdf'] = __('Fluent Forms PDF', 'fluentform');
return $menus;
}, 10, 1);
Parameters #
- $menus (array) Menu List
Placement #
This code should be placed in the functions.php file of your active theme.
Source Code #
This filter is located in FluentForm\App\Modules\Widgets\AddOnModule -> render()