| 7 system.api.php | hook_theme_registry_alter(&$theme_registry) |
| 6 core.php | hook_theme_registry_alter(&$theme_registry) |
| 8 system.api.php | hook_theme_registry_alter(&$theme_registry) |
Alter the theme registry information returned from hook_theme().
The theme registry stores information about all available theme hooks, including which callback functions those hooks will call when triggered, what template files are exposed by these hooks, and so on.
Note that this hook is only executed as the theme cache is re-built. Changes here will not be visible until the next cache clear.
The $theme_registry array is keyed by theme hook name, and contains the information returned from hook_theme(), as well as additional properties added by _theme_process_registry().
For example:
$theme_registry['user_profile'] = array(
'arguments' => array(
'account' => NULL,
),
'template' => 'modules/user/user-profile',
'file' => 'modules/user/user.pages.inc',
'type' => 'module',
'theme path' => 'modules/user',
'theme paths' => array(
0 => 'modules/user',
),
'preprocess functions' => array(
0 => 'template_preprocess',
1 => 'template_preprocess_user_profile',
),
);
Parameters
$theme_registry: The entire cache of theme registry information, post-processing.
See also
Related topics
- _theme_build_registry in includes/
theme.inc - Rebuild the hook theme_registry cache.
File
- developer/
hooks/ core.php, line 2256 - These are the hooks that are invoked by the Drupal core.
Code
function hook_theme_registry_alter(&$theme_registry) {
// Kill the next/previous forum topic navigation links.
foreach ($theme_registry['forum_topic_navigation']['preprocess functions'] as $key => $value) {
if ($value == 'template_preprocess_forum_topic_navigation') {
unset($theme_registry['forum_topic_navigation']['preprocess functions'][$key]);
}
}
}
Comments
Unlike the hook_theme this
PermalinkUnlike the
hook_themethis hook can not be used within a theme.Remember to use theme(), not the core equivalent
PermalinkI struggled with a fundamental misconception when trying to re-theme the
theme_username()function usinghook_theme_registry_alter. After redefining$theme_registry['username']['function']as a function definition in my custom module, I expectedtheme_username()to use my new function definition. It never will.As I found out,
theme_username()calls the core function directly, whereastheme('username',arg1,arg2)queries the theme registry first. So whereas callingtheme_username()will never call the function defined inhook_theme_registry_alter, callingtheme('username',...)will call that new function.I hope I save someone the hour I wasted figuring this out :P
Almost never do you want to
PermalinkAlmost never do you want to theme stuff by calling theming functions directly instead of using the
theme('foo', …)format. And this is one example why. It's considered incorrect Drupal coding style to do so.Reasons to use this hook
PermalinkSee: http://www.lullabot.com/articles/overriding-theme-functions-in-modules for one example of why this hook can be useful.