Version: 4
🔥 Gravity PDF v4 end of life was 2019-10-04 and this version is no longer supported. This legacy documentation is kept for reference only.
gfpdf_capabilities
Jump To Section
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
.