-
Notifications
You must be signed in to change notification settings - Fork 91
/
Copy pathgpdec-delay-for-gravity-pdf-bg-processing.php
66 lines (56 loc) · 2.03 KB
/
gpdec-delay-for-gravity-pdf-bg-processing.php
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
<?php
/**
* Gravity Perks // Disable Entry Creation // Delay Deletion for Gravity PDF Background Processing
* http://gravitywiz.com/documentation/gravity-forms-disable-entry-creation/
*
* Experimental Snippet 🧪
*
* Prevent the deletion of entries until PDFs are generated and attached to notifications. This is necessary if
* using Gravity PDF's background processing as the entry will be deleted prior to the PDF being generated since
* background processing uses subsequent requests rather than form submission to generate the PDF.
*
* Installation instructions:
* 1. https://gravitywiz.com/documentation/how-do-i-install-a-snippet/
* 2. See usage instructions at the bottom of the file
*/
class GPDEC_GFPDF_Delayed_Deletion {
public $deletion_queue = array();
private $_args = array();
function __construct( $args ) {
$this->_args = wp_parse_args( $args, array(
'form_id' => false,
) );
add_action( 'init', array( $this, 'add_hooks' ), 16 ); // Wait for all add-ons
}
public function add_hooks() {
if ( ! function_exists( 'gp_disable_entry_creation' ) ) {
return;
}
add_filter( 'gpdec_should_delete_entry_' . $this->_args['form_id'], '__return_false' );
add_action( 'gfpdf_post_generate_and_save_pdf_notification', array( $this, 'post_generate_and_save' ), 50, 4 );
add_action( 'shutdown', array( $this, 'shutdown' ) );
}
public function post_generate_and_save( $form, $entry, $settings, $notifications ) {
if ( $form['id'] != $this->_args['form_id'] ) {
return;
}
$this->deletion_queue[] = $entry;
}
public function shutdown() {
if ( empty( $this->deletion_queue ) ) {
return;
}
foreach ( $this->deletion_queue as $entry ) {
gp_disable_entry_creation()->delete_form_entry( $entry );
}
}
}
/*
* Basic Usage
*
* Uncomment the lines below (remove the preceding // on each line) and adjust the form ID accordingly.
* You may also duplicate the class instantiation if this is required for more than one form.
*/
//new GPDEC_GFPDF_Delayed_Deletion( array(
// 'form_id' => 3,
//) );