function pardot_submission_delete in Pardot Integration 6
Same name and namespace in other branches
- 7 pardot.module \pardot_submission_delete()
Delete a form submission.
Not sure there is a use case for this but its here for completeness.
Parameters
integer $sid: Submission id.
File
- ./
pardot.module, line 383 - ParDot integration module.
Code
function pardot_submission_delete($sid) {
db_query('DELETE FROM {pardot_submissions} WHERE sid = %d', $sid);
}