You are here

function _webform2pdf_get_template in Webform2PDF 6

Same name and namespace in other branches
  1. 6.2 webform2pdf.module \_webform2pdf_get_template()
  2. 7.4 webform2pdf.module \_webform2pdf_get_template()
  3. 7.3 webform2pdf.module \_webform2pdf_get_template()
4 calls to _webform2pdf_get_template()
theme_webform2pdf_mail2pdf in ./webform2pdf.module
webform2pdf_download_pdf_form_submit in ./webform2pdf.module
webform2pdf_preprocess_webform_mail_message in ./webform2pdf.module
Implementation of template_preprocess_webform_mail_message()
webform2pdf_submission_download_pdf in ./webform2pdf.module

File

./webform2pdf.module, line 1416

Code

function _webform2pdf_get_template($nid) {
  $result = db_query("SELECT * FROM {webform2pdf} WHERE nid = %d AND enabled = 1", $nid);
  $row = db_fetch_array($result);
  $row['p_body'] = check_markup($row['p_body'], $row['format'], FALSE);
  return $row;
}