template_preprocess_webform_submission
Drupal 7 template_preprocess_webform_submission(&$vars)
Preprocess function for webform-submission.tpl.php.
File
- sites/
all/ modules/ webform/ includes/ webform.submissions.inc, line 890 - This file is loaded when handling submissions, either submitting new, editing, or viewing. It also contains all CRUD functions for submissions.
Code
function template_preprocess_webform_submission(&$vars) {
$vars['node'] = $vars['renderable']['#node'];
$vars['submission'] = $vars['renderable']['#submission'];
$vars['email'] = $vars['renderable']['#email'];
$vars['format'] = $vars['renderable']['#format'];
}

