gform_entry_info

Description

Use this hook to add custom entry information to the Info area on the Entry detail page.

Usage

add_action( 'gform_entry_info', 'my_entry_info', 10, 2 );

Parameters

  • $form_id string

    The ID of the form from which the entry was submitted.

  • $entry Entry Object

    The current entry.

Examples

This very basic example will output “Hello” in the Info panel on the Entry Detail view.

add_action( 'gform_entry_info', 'my_entry_info', 10, 2 );
function my_entry_info( $form_id, $entry ) {
echo 'Hello';
}

Source Code

This filter is located in GFEntryDetail::lead_detail_page() in entry_detail.php.