You are here

function _webform_render_serial in Webform Serial 7

Implements _webform_render_component().

File

components/serial.inc, line 88
Webform module serial component.

Code

function _webform_render_serial($component, $value = NULL, $filter = TRUE) {
  return array(
    '#type' => 'value',
    '#value' => $value,
  );
}