DescriptionUsageParametersExamplePlacementSinceSource Code
Description
Allows custom actions to be performed after creating the contact.
Usage
add_action( 'gform_zohocrm_post_create_contact', $contact_record, $contact, $feed, $entry, $form );
return $contact_id;
}
Parameters
$contact_record array
The contact record.
$contact array
The contact arguments.
$feed array
The feed object.
$entry array
The entry object.
$form array
The form object.
Example
add_action( 'gform_zohocrm_post_create_contact', 'action_after_contact_creation', 10, 5 );
function action_after_contact_creation( $contact_record, $contact, $feed, $entry, $form ) {
// Do your stuff
}
Placement
This code should be placed in the functions.php file of your active theme.
Since
This filter was added in Zoho CRM version 1.8.
Source Code
This filter is located in class-gf-zohocrm.php.