Vorrei fornire l'implementazione del modello nel mio modulo e consentire ai temi di sovrascriverlo. Fondamentalmente, aggiungo un suggerimento con questo codice semplificato:
function attach_preprocess_node(&$vars) {
$vars['theme_hook_suggestions'][] = 'node__test';
}
(Non voglio usare hook_theme per aggiungere un nuovo tema perché voglio riutilizzare le funzioni del nodo di preelaborazione. Il nome del tema è scomodo ma non voglio scrivere node_ attach _% per evitare confusione con il tipo di nodo.)
Quindi uso hook_theme_registry_alter () per aggiungere il percorso del modulo:
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);
}
}
}
Comunque, non funziona. Ciò significa che il file temi / nodo - super.tpl.php non viene utilizzato. È usato solo se l'ho copiato nella cartella del tema.