degov-8.x-2.0/modules/degov_taxonomy_term_tags/degov_taxonomy_term_tags.module
modules/degov_taxonomy_term_tags/degov_taxonomy_term_tags.module
<?php
use Drupal\degov_common\Common;
/**
* Implements hook_preprocess().
*/
function degov_taxonomy_term_tags_preprocess(&$variables, $hook, &$info) {
// Add template suggestions and libraries implemented in this module.
Common::addThemeSuggestions($variables, $hook, $info, [
'module_name' => 'degov_taxonomy_term_tags',
'entity_type' => 'taxonomy_term',
'entity_bundles' => ['tags'],
'entity_view_modes' => [],
]);
}
