function _coder_50_message_na_warning in Coder 6.2
Same name and namespace in other branches
- 5.2 includes/coder_50.inc \_coder_50_message_na_warning()
- 5 includes/coder_50.inc \_coder_50_message_na_warning()
- 6 includes/coder_50.inc \_coder_50_message_na_warning()
1 string reference to '_coder_50_message_na_warning'
- coder_50_reviews in includes/
coder_50.inc - Implementation of hook_reviews().
File
- includes/
coder_50.inc, line 129 - This include file implements coder functionality for 4.7 -> 5.x upgrades.
Code
function _coder_50_message_na_warning() {
return t('The function !message_na() was removed, remove it from your modules as well and replace it with !t(\'n/a\')', array(
'!message_na' => theme('drupalapi', 'message_na', '4.7'),
'!t' => theme('drupalapi', 't', '5'),
));
}