You are here

function theme_webform2pdf_content in Webform2PDF 7.3

Same name and namespace in other branches
  1. 7.4 includes/webform2pdf.theme.inc \theme_webform2pdf_content()
3 theme calls to theme_webform2pdf_content()
theme_webform2pdf_mail2pdf in ./webform2pdf.module
webform2pdf_download_pdf_form_submit in includes/webform2pdf.download.inc
webform2pdf_submission_download_pdf in includes/webform2pdf.download.inc

File

./webform2pdf.module, line 476

Code

function theme_webform2pdf_content($vars) {
  $email = array(
    'html' => 'text',
    'excluded_components' => array(),
  );
  $p_body = _webform_filter_values($vars['template']['p_body'], $vars['node'], $vars['submission'], $email, FALSE, TRUE);
  return _webform2pdf_filter_values($p_body, $vars['node'], $vars['submission']);
}