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