gform_rest_api_capability_post_entries

Description

Filters the capability required to create entries via the Rest API V2.

Usage

add_filter( 'gform_rest_api_capability_post_entries', 'your_function_name', 10, 2 );

Parameters

  • $capability string

    The capability required. Defaults to ‘gravityforms_edit_entries’.

  • $request WP_REST_Request

    Full data about the request.

Example

add_filter( 'gform_rest_api_capability_post_entries', 'get_post_entries_capability', 10, 2 );
function get_post_entries_capability ( $capability, $request ) 
{ 
  return 'my_custom_capability'; 
}

Placement

This code should be placed in the functions.php file of your active theme.

Since

This filter was added in Gravity Forms 2.4.

Source Code

This filter is located in:

  • GF_REST_Entries_Controller::create_item_permissions_check in includes/webapi/v2/includes/controllers/class-controller-entries.php
  • GF_REST_Form_Entries_Controller::create_item_permissions_check in includes/webapi/v2/includes/controllers/class-controller-form-entries.php