You are here

function _webform_table_textarea in Webform 7.4

Same name and namespace in other branches
  1. 6.3 components/textarea.inc \_webform_table_textarea()
  2. 7.3 components/textarea.inc \_webform_table_textarea()

Implements _webform_table_component().

File

components/textarea.inc, line 228
Webform module textarea component.

Code

function _webform_table_textarea($component, $value) {
  return empty($value[0]) ? '' : check_plain($value[0]);
}