You are here

function template_preprocess_table__field_collection_table in Field Collection Table 7

Preprocess variables for a field collection table.

File

theme/theme.inc, line 173

Code

function template_preprocess_table__field_collection_table(&$variables) {
  if (empty($variables['settings'])) {
    return;
  }
  if (isset($variables['settings']['empty'])) {
    _field_collection_table_hide_empty($variables);
  }
}