You are here

function theme_webform_mail_pagebreak in Webform 6.2

Same name and namespace in other branches
  1. 5.2 components/pagebreak.inc \theme_webform_mail_pagebreak()

Format the output of e-mailed data for this component.

Parameters

$data: A string or array of the submitted data.

$component: An array of information describing the component, directly correlating to the webform_component database schema.

Return value

Textual output to be included in the email.

File

components/pagebreak.inc, line 96
Webform module page break component.

Code

function theme_webform_mail_pagebreak($data, $component) {
  return "\n-- " . $component['name'] . " --\n";
}