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?
|
feedback
|
|
The functions you mention above are registered via drupal_common_theme(), which is called from the the system_theme() function. | |||
|
feedback
|