function fillpdf_fillpdf_merge_pre_handle in FillPDF 7.2
Same name and namespace in other branches
- 7 fillpdf.module \fillpdf_fillpdf_merge_pre_handle()
Implementation of fillpdf_merge_pre_handle(). Set up the data then invoke the Rules event.
File
- ./
fillpdf.module, line 717 - Allows mappings of PDFs to site content
Code
function fillpdf_fillpdf_merge_pre_handle($fillpdf) {
if (module_exists('rules')) {
rules_invoke_event('fillpdf_merge_pre_handle', $fillpdf);
}
}