You are here

function _webform_table_textfield in Webform 7.3

Same name and namespace in other branches
  1. 6.3 components/textfield.inc \_webform_table_textfield()
  2. 7.4 components/textfield.inc \_webform_table_textfield()

Implements _webform_table_component().

File

components/textfield.inc, line 234
Webform module textfield component.

Code

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