Sen (Sadece modülün adıyla 'MyModule' değiştirin) İşte
hook_theme_registry_alter() benim için çalışan özel bir modül kullanımına bir örnektir kullanabilirsiniz: Şimdi
/**
* Implementation of hook_theme_registry_alter()
*/
function mymodule_theme_registry_alter(&$theme_registry) {
$template = 'node';
$originalpath = array_shift($theme_registry[$template]['theme paths']);
$modulepath = drupal_get_path('module', 'mymodule');
// Stick the original path with the module path back on top
array_unshift($theme_registry[$template]['theme paths'], $originalpath, $modulepath);
}
, Drupal, düğüm şablonu geçersiz kılmaları için modül klasörünüzü denetler.
Benim için mükemmel çalışıyor. – theduke