function _webform_render_textarea in Webform 5
Same name and namespace in other branches
- 5.2 components/textarea.inc \_webform_render_textarea()
- 6.3 components/textarea.inc \_webform_render_textarea()
- 6.2 components/textarea.inc \_webform_render_textarea()
- 7.4 components/textarea.inc \_webform_render_textarea()
- 7.3 components/textarea.inc \_webform_render_textarea()
Build a form item array containing all the properties of this component.
Parameters
$component: An array of information describing the component, directly correlating to the webform_component database schema.
Return value
An array of a form item to be displayed on the client-side webform.
1 call to _webform_render_textarea()
- _webform_submission_display_textarea in components/
textarea.inc - Display the result of a textfield submission. The output of this function will be displayed under the "results" tab then "submissions".
File
- components/
textarea.inc, line 57
Code
function _webform_render_textarea($component) {
$form_item = array(
'#type' => "textarea",
'#title' => htmlspecialchars($component['name'], ENT_QUOTES),
'#default_value' => _webform_filtervalues($component['value']),
'#required' => $component['mandatory'],
'#weight' => $component['weight'],
'#description' => _webform_filtervalues($component['extra']['description']),
'#rows' => $component['extra']['rows'],
'#cols' => $component['extra']['cols'],
'#attributes' => $component['extra']['attributes'],
'#prefix' => '<div class="webform-component-' . $component['type'] . '" id="webform-component-' . $component['form_key'] . '">',
'#suffix' => '</div>',
);
if ($component['extra']['rows'] > 0) {
$form_item['#rows'] = $component['extra']['rows'];
}
if ($component['extra']['cols'] > 0) {
$form_item['#cols'] = $component['extra']['cols'];
}
return $form_item;
}