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