function nd_theme_registry_alter in Node displays 6.3
Same name and namespace in other branches
- 6.2 nd.module \nd_theme_registry_alter()
Implementation of hook_registry_alter().
File
- ./
nd.module, line 121 - Node displays.
Code
function nd_theme_registry_alter(&$registry) {
$path = drupal_get_path('module', 'nd') . '/templates';
array_unshift($registry['node']['theme paths'], $path);
}