Me gustaría proporcionar una implementación de plantilla en mi módulo y permitir que los temas la anulen. Básicamente, agrego una sugerencia por este código simplificado:
function attach_preprocess_node(&$vars) {
$vars['theme_hook_suggestions'][] = 'node__test';
}
(No quiero usar hook_theme para agregar un nuevo tema porque quiero reutilizar las funciones de nodo de preproceso. El nombre del tema es incómodo pero no quiero escribir node_ attach _% para evitar confusiones con el tipo de nodo).
Luego uso hook_theme_registry_alter () para agregar la ruta del 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);
}
}
}
Sin embargo, no funciona. Eso significa: el archivo themes / node - super.tpl.php no se usa. Solo se usa si lo copié en la carpeta de temas.