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