php 重力特权//嵌套表格//延迟子支付的子通知

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了php 重力特权//嵌套表格//延迟子支付的子通知相关的知识,希望对你有一定的参考价值。

<?php
/**
 * Gravity Perks // Nested Forms // Delay Child Notifications for Parent Payment
 * http://gravitywiz.com/documentation/gravity-forms-nested-forms/
 */
add_filter( 'gpnf_should_send_notification', function( $should_send_notification, $notification, $context, $parent_form, $nested_form_field, $entry, $child_form ) {

	if( $context == 'parent' ) {
		$parent_entry = GFAPI::get_entry( rgar( $entry, 'gpnf_entry_parent' ) );
		$should_send_notification = in_array( rgar( $parent_entry, 'payment_status' ), array( 'Paid', 'Active' ) );
	}

	return $should_send_notification;
}, 10, 7 );

add_action( 'gform_post_payment_completed', function( $entry ) {
	if( is_callable( 'gpnf_notification_processing' ) ) {
		gpnf_notification_processing()->maybe_send_child_notifications( $entry, GFAPI::get_form( $entry['form_id'] ) );
	}
} );

以上是关于php 重力特权//嵌套表格//延迟子支付的子通知的主要内容,如果未能解决你的问题,请参考以下文章

php 重力特权// GP嵌套形式//需要父和子之间的唯一值

php 重力特权//嵌套形式//重新排序显示字段

php 重力特权// GP帖子内容合并标签//在表格B的HTML字段中使用表格A中的合并标签w /重力PDF

php 重力特权// GP限制提交//通过重力视图编辑时禁用限制进给

php 重力特权//填充任何内容//填充用户角色

php 重力特权//多页导航//下一个旁路验证