function _coder_47_format_name_warning in Coder 6.2
Same name and namespace in other branches
- 5.2 includes/coder_47.inc \_coder_47_format_name_warning()
- 5 includes/coder_47.inc \_coder_47_format_name_warning()
- 6 includes/coder_47.inc \_coder_47_format_name_warning()
1 string reference to '_coder_47_format_name_warning'
- coder_47_reviews in includes/
coder_47.inc - Implementation of hook_reviews().
File
- includes/
coder_47.inc, line 148 - This include file implements coder functionality for 4.6 -> 4.7 upgrades.
Code
function _coder_47_format_name_warning() {
return t('!format_name() was renamed to !theme_username()', array(
'!format_name' => theme('drupalapi', 'format_name', '4.6'),
'!theme_username' => theme('drupalapi', 'theme_username'),
));
}