You are here

function taxonomy_theme_suggestions_taxonomy_term in Zircon Profile 8.0

Same name and namespace in other branches
  1. 8 core/modules/taxonomy/taxonomy.module \taxonomy_theme_suggestions_taxonomy_term()

Implements hook_theme_suggestions_HOOK().

File

core/modules/taxonomy/taxonomy.module, line 215
Enables the organization of content into categories.

Code

function taxonomy_theme_suggestions_taxonomy_term(array $variables) {
  $suggestions = array();

  /** @var \Drupal\taxonomy\TermInterface $term */
  $term = $variables['elements']['#taxonomy_term'];
  $suggestions[] = 'taxonomy_term__' . $term
    ->bundle();
  $suggestions[] = 'taxonomy_term__' . $term
    ->id();
  return $suggestions;
}