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