summaryrefslogtreecommitdiffstatshomepage
path: root/core/modules/taxonomy/taxonomy.module
diff options
context:
space:
mode:
Diffstat (limited to 'core/modules/taxonomy/taxonomy.module')
-rw-r--r--core/modules/taxonomy/taxonomy.module15
1 files changed, 0 insertions, 15 deletions
diff --git a/core/modules/taxonomy/taxonomy.module b/core/modules/taxonomy/taxonomy.module
index 28e54b11f71..6694f62e563 100644
--- a/core/modules/taxonomy/taxonomy.module
+++ b/core/modules/taxonomy/taxonomy.module
@@ -10,21 +10,6 @@ use Drupal\Core\Render\Element;
use Drupal\taxonomy\Entity\Term;
/**
- * Implements hook_theme_suggestions_HOOK().
- */
-function taxonomy_theme_suggestions_taxonomy_term(array $variables): array {
- $suggestions = [];
-
- /** @var \Drupal\taxonomy\TermInterface $term */
- $term = $variables['elements']['#taxonomy_term'];
-
- $suggestions[] = 'taxonomy_term__' . $term->bundle();
- $suggestions[] = 'taxonomy_term__' . $term->id();
-
- return $suggestions;
-}
-
-/**
* Prepares variables for taxonomy term templates.
*
* Default template: taxonomy-term.html.twig.