You are here

function fillpdf_form_export in FillPDF 7

Same name and namespace in other branches
  1. 6 fillpdf.admin.inc \fillpdf_form_export()
  2. 7.2 fillpdf.admin.inc \fillpdf_form_export()

Export an importable array of PDF field key -> Label, Value mappings.

The array key is the PDF field key and the value is another array containing the label and the value (properly keyed).

Parameters

mixed $pdf_form: The FillPDF form ID.

1 string reference to 'fillpdf_form_export'
fillpdf_menu in ./fillpdf.module
Implements hook_menu().

File

./fillpdf.admin.inc, line 651
Allows mappings of PDFs to site content.

Code

function fillpdf_form_export($pdf_form) {
  $fillpdf_code = fillpdf_generate_mappings($pdf_form);
  return drupal_get_form('fillpdf_export_form', $fillpdf_code);
}