when i viewed the drupal sourcecode, i found there're lots of theme() function,eg:theme_table($variables),theme_table($variables),theme_username()..., from the drupal documentation i know when use a theme() function, there must be a registry to it. namely,hook_theme(). but i can't find the hook_theme of the theme_table,theme_username...why?

link|improve this question

77% accept rate
feedback

1 Answer

The functions you mention above are registered via drupal_common_theme(), which is called from the the system_theme() function.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.