You are here

function double_field_theme_suggestions_table_alter in Double Field 4.x

Implements hook_theme_suggestions_HOOK_alter().

File

./double_field.module, line 119
Primary module hooks for Double Field module.

Code

function double_field_theme_suggestions_table_alter(array &$suggestions, array $variables) : void {
  $field_name = $variables['attributes']['double-field--field-name'] ?? NULL;
  if ($field_name) {
    $suggestions[] = 'table__double_field__' . $field_name;
  }
}