You are here

function fillpdf_fillpdf_merge_pre_handle in FillPDF 7

Same name and namespace in other branches
  1. 7.2 fillpdf.module \fillpdf_fillpdf_merge_pre_handle()

Implements fillpdf_merge_pre_handle().

Set up the data then invoke the Rules event.

File

./fillpdf.module, line 1251

Code

function fillpdf_fillpdf_merge_pre_handle($fillpdf) {
  if (module_exists('rules')) {
    rules_invoke_event('fillpdf_merge_pre_handle', $fillpdf);
  }
}