Version: 4
🔥 Gravity PDF v4 end of life was 2019-10-04 and this version is no longer supported. This legacy documentation is kept for reference only.
Gravity PDF API – delete_pdf()
Jump To Section
Description
This method will permanently delete an existing PDF's settings. This cannot be undone so use it carefully.
Version
This method was introduced in Gravity PDF 4.0.
Parameters
$form_id | integer : The Gravity Form ID
$pdf_id | string
: The PDF internal identifier (found in the pid
URL parameter when viewing individual PDF settings in the admin area)
Return
boolean : True on success, false on failure
Usage
The following snippet shows you how to delete an existing PDF:
add_action( 'init', function() {
if ( class_exists( 'GPDFAPI' ) ) {
/* Delete the PDF on form #2 */
if( GPDFAPI::delete_pdf( 2, '56c14c955d989' ) ) {
//PDF deleted successfully
}
}
} );
Source Code
This method is located in api.php
.