inky_integration-1.0.1/inky_integration.module
inky_integration.module
<?php
/**
* Implements hook_theme_registry_alter().
*/
function inky_integration_theme_registry_alter(&$theme_registry) {
// custom template töltődjön be admin témában is a commentek megjelenítéséhez
/** @var \Drupal\Core\Extension\ModuleHandlerInterface $module_handler */
$module_handler = \Drupal::service('module_handler');
$module_path = $module_handler->getModule('inky_integration')->getPath();
$theme_registry['email_wrap']['path'] = $module_path . '/templates';
}
/**
* Implements hook_preprocess_HOOK().
*/
function inky_integration_preprocess_email_wrap(&$variables) {
$module_handler = \Drupal::service('module_handler');
$module_path = $module_handler->getModule('inky_integration')->getPath();
$variables['path_to_module'] = $module_path;
}
