Version: 5
CAUTION
️Version 5 of Gravity PDF does not have full support for Gravity Forms 2.5 and you should consider upgrading to version 6. If you cannot, version 5 will still function but have a degraded admin experience. Support and bug/security fixes will be provided until 27 April 2023.gfpdf_capabilities
Description
This filter can be used to add new capabilities to the user restrictions global setting. By default, all Gravity Form capabilities and all active WordPress capabilities are included.
Parameters
$capabilities | array
- The multidimensional associative array that holds the list of capabilities.
Usage
This snippet adds a new group to our User Restrictions global setting which includes three capabilities:
add_action( 'gfpdf_capabilities', function( $capabilities ) {
/* Ensure your capabilities are correctly registered with WordPress */
$capabilities[ __( '3rd Party Plugin', 'prefix-text-domain' ) ] = array(
'capability_1',
'capability_2',
'capability_3',
);
return $capabilities;
} );
Source Code
This filter is located in the Helper_Abstract_Options::get_capabilities()
method of /src/helper/abstract/Helper_Abstract_Options.php
.