function _webform_table_shs in Webform Simple Hierarchical Select 7
Implements _webform_table_component().
File
- components/
shs.inc, line 160 - Webform simple hierarchical select component.
Code
function _webform_table_shs($component, $value) {
$output = '';
foreach (_webform_shs_get_labels_for_output($value) as $label) {
$output .= check_plain($label) . '<br/>';
}
return $output;
}