function _webform_display_email in Webform 7.3
Same name and namespace in other branches
- 6.3 components/email.inc \_webform_display_email()
- 7.4 components/email.inc \_webform_display_email()
Implements _webform_display_component().
File
- components/
email.inc, line 209 - Webform module email component.
Code
function _webform_display_email($component, $value, $format = 'html') {
return array(
'#title' => $component['name'],
'#weight' => $component['weight'],
'#theme' => 'webform_display_email',
'#theme_wrappers' => $format == 'html' ? array(
'webform_element',
) : array(
'webform_element_text',
),
'#format' => $format,
'#value' => isset($value[0]) ? $value[0] : '',
'#translatable' => array(
'title',
),
);
}