You are here

function module_filter_theme_registry_alter in Module Filter 8.3

Implements hook_theme_registry_alter().

File

./module_filter.module, line 171
Provides a filtering mechanism to various admin pages.

Code

function module_filter_theme_registry_alter(&$theme_registry) {

  // We need to alter the system-modules-details template so we can add
  // applicable requires and required-by classes.
  $theme_registry['system_modules_details']['path'] = drupal_get_path('module', 'module_filter') . '/templates';
}