You are here

function fillpdf_update_field in FillPDF 5

Same name and namespace in other branches
  1. 6 fillpdf.admin.inc \fillpdf_update_field()
  2. 7.2 fillpdf.admin.inc \fillpdf_update_field()
  3. 7 fillpdf.deprecated.inc \fillpdf_update_field()
1 call to fillpdf_update_field()
fillpdf_field_edit_submit in ./fillpdf.module

File

./fillpdf.module, line 451
Allows mappings of PDFs to site content

Code

function fillpdf_update_field(&$pdf_form, &$field, $old_key) {
  db_query("UPDATE {fillpdf_fields} SET label = '%s', pdf_key='%s', \n           value = '%s' WHERE fid = %d AND pdf_key = '%s'", $field->label, $field->pdf_key, $field->value, $pdf_form->fid, $old_key);
}