Eu gostaria de fornecer a implementação de modelo no meu módulo e permitir que os temas o substituam. Basicamente, adiciono uma sugestão por este código simplificado:
function attach_preprocess_node(&$vars) {
$vars['theme_hook_suggestions'][] = 'node__test';
}
(Não quero usar hook_theme para adicionar um novo tema, pois quero reutilizar as funções do nó de pré-processamento. O nome do tema é estranho, mas não quero escrever node_ attach _% para evitar confusão com o tipo de nó.)
Então eu uso hook_theme_registry_alter () para adicionar o caminho do módulo:
function attach_theme_registry_alter(&$theme_registry) {
$path = drupal_get_path('module', 'attach') . '/themes';
$theme_registry_copy = $theme_registry;
_theme_process_registry($theme_registry_copy, 'phptemplate', 'theme_engine', 'node', drupal_get_path('module', 'node'));
$theme_registry += array_diff_key($theme_registry_copy, $theme_registry);
if (!isset($theme_registry['node']['theme paths'])) {
$theme_registry['node']['theme paths'] = array();
}
if (!isset($theme_registry['node']['theme paths'])) {
$first_element = array_shift($theme_registry['node']['theme paths']);
if ($first_element) {
array_unshift($theme_registry['node']['theme paths'], $first_element, $path);
}
else {
array_unshift($theme_registry['node']['theme paths'], $path);
}
}
}
No entanto, isso não funciona. Isso significa: o arquivo themes / node - super.tpl.php não é usado. Ele é usado apenas se eu o tiver copiado para a pasta do tema.