function drupal_rebuild_theme_registry

6.x theme.inc drupal_rebuild_theme_registry()

Force the system to rebuild the theme registry; this should be called when modules are added to the system, or when a dynamic system needs to add more theme hooks.

4 calls to drupal_rebuild_theme_registry()
drupal_flush_all_caches in drupal-6.x/includes/common.inc
Flush all cached data on the site.
system_modules_submit in drupal-6.x/modules/system/system.admin.inc
Submit callback; handles modules form submission.
system_settings_form_submit in drupal-6.x/modules/system/system.module
Execute the system_settings_form.
system_themes_form_submit in drupal-6.x/modules/system/system.admin.inc
Process system_themes_form form submissions.

File

drupal-6.x/includes/theme.inc, line 255
The theme system, which controls the output of Drupal.

Code

function drupal_rebuild_theme_registry() {
  cache_clear_all('theme_registry', 'cache', TRUE);
}