Description
GFSignature is the class which houses some of the functionality included by the Gravity Forms Signature Add-on; it extends the GFAddon class which is part of the add-on framework. Below are a few functions which you may find useful when working on your own custom code.
gf_signature()
The gf_signature() function is used to return an instance of the GFSignature class.
get_signature_url()
Returns the URL for the specified signature.
Usage
$signature_url = gf_signature()->get_signature_url( $filename );
Parameters
- $filename string
The filename for this signature. The filename can be found in the Entry Object as the value for the signature field.
-
Returns string
The url for the specified signature.
delete_signature()
Initiates deletion of the signature file and updates the entry to remove the filename.
Usage
$result = gf_signature()->delete_signature( $entry_id, $field_id );