function _coder_6x_theme_get_function_warning in Coder 6.2
Same name and namespace in other branches
- 5.2 includes/coder_6x.inc \_coder_6x_theme_get_function_warning()
- 5 includes/coder_6x.inc \_coder_6x_theme_get_function_warning()
- 6 includes/coder_6x.inc \_coder_6x_theme_get_function_warning()
1 string reference to '_coder_6x_theme_get_function_warning'
- coder_6x_reviews in includes/
coder_6x.inc - Implementation of hook_reviews().
File
- includes/
coder_6x.inc, line 872 - This include file implements coder functionality for 5.x -> 6.x upgrades.
Code
function _coder_6x_theme_get_function_warning() {
return t('!theme_get_function() has been deprecated because of template theming; see !theme_get_registry()', array(
'!theme_get_function' => theme('drupalapi', 'theme_get_function', '5'),
'!theme_get_registry' => theme('drupalapi', 'theme_get_registry', '6'),
));
}