theme_get_registry

Versions
mediamosa-21
theme_get_registry()

Get the theme registry.

Return value

The theme registry array if it has been stored in memory, NULL otherwise.

▾ 8 functions call theme_get_registry()

contextual_preprocess in modules/contextual/contextual.module
Template variable preprocessor for contextual links.
devel_shutdown_query in sites/all/modules/devel/devel.module
devel_themer_theme_twin in sites/all/modules/devel/devel_themer.module
An unfortunate copy/paste of theme(). This one is called by the devel_themer_catch_function() and processes all theme calls but gives us info about the candidates, timings, etc. Without this twin, it was impossible to capture calls to module owned...
devel_theme_registry in sites/all/modules/devel/devel.module
drupal_build_form in includes/form.inc
Build and process a form based on a form id.
l in includes/common.inc
Format an internal Drupal link.
theme in includes/theme.inc
Generate the themed output.
t_safe in sites/all/modules/devel/devel.module

Code

includes/theme.inc, line 233

<?php
function theme_get_registry() {
  return _theme_set_registry();
}
?>