You are here

function theme_webform2pdf_filename in Webform2PDF 7.4

Same name and namespace in other branches
  1. 6.2 webform2pdf.module \theme_webform2pdf_filename()
  2. 7.3 webform2pdf.module \theme_webform2pdf_filename()
3 theme calls to theme_webform2pdf_filename()
webform2pdf_download_pdf_form_submit in includes/webform2pdf.download.inc
webform2pdf_mail_alter in ./webform2pdf.module
webform2pdf_submission_download_pdf in includes/webform2pdf.download.inc

File

includes/webform2pdf.theme.inc, line 257

Code

function theme_webform2pdf_filename($vars) {
  $sid = is_object($vars['submission']) ? $vars['submission']->sid : $vars['submission'];
  $pdf_file_name = "webform_submission-" . $vars['node']->nid;
  $pdf_file_name .= !empty($sid) ? '-' . $sid : '';
  $pdf_file_name .= ".pdf";
  return $pdf_file_name;
}