gform_zohocrm_post_create_task

gform_zohocrm_post_create_task

DescriptionUsageParametersExampleSinceSource Code

Description
Allows custom actions to be performed after creating the task.
Usage
{
add_action( 'gform_zohocrm_post_create_task', $task_record, $task, $feed, $entry, $form );

return $task_id;

}

Parameters

$task_record array
The task record.

$task array
The task arguments.

$feed array
The feed object.

$entry array
The entry object.

$form array
The form object.

Example
add_action( 'gform_zohocrm_post_create_task', 'action_after_task_creation', 10, 5 );
function action_after_task_creation( $task_record, $task, $feed, $entry, $form ) {
// Do your stuff
}

Since
This filter was added in Zoho CRM version 1.8.
Source Code
This filter is located in class-gf-zohocrm.php.

发表回复

您的邮箱地址不会被公开。 必填项已用 * 标注