media_helper-2.0.0/tests/modules/media_helper_test_with_picture_attributes/media_helper_test_with_picture_attributes.module
tests/modules/media_helper_test_with_picture_attributes/media_helper_test_with_picture_attributes.module
<?php
/**
* @file
* Media Helper Test with Picture Attributes module.
*/
/**
* Implements hook_theme_registry_alter().
*/
function media_helper_test_with_picture_attributes_theme_registry_alter(array &$theme_registry): void {
$module_path = \Drupal::service('extension.list.module')
->getPath('media_helper_test_with_picture_attributes');
$module_template_path = $module_path . '/templates';
if (isset($theme_registry['responsive_image'])) {
$resp_image = &$theme_registry['responsive_image'];
$resp_image['type'] = 'module';
$resp_image['theme path'] = $module_path;
$resp_image['path'] = $module_template_path;
}
}
