function template_preprocess_table__multifield_table in Multifield table 7
Implements template_preprocess_table__multifield_table().
File
- theme/
theme.inc, line 167 - Theme functions for the Mutifield Table module.
Code
function template_preprocess_table__multifield_table(&$variables) {
if (empty($variables['settings'])) {
return;
}
if (isset($variables['settings']['empty'])) {
_multifield_table_hide_empty($variables);
}
}