function _coder_47_message_access_warning in Coder 6
Same name and namespace in other branches
- 5.2 includes/coder_47.inc \_coder_47_message_access_warning()
- 5 includes/coder_47.inc \_coder_47_message_access_warning()
- 6.2 includes/coder_47.inc \_coder_47_message_access_warning()
1 string reference to '_coder_47_message_access_warning'
- coder_47_reviews in includes/
coder_47.inc - Implementation of hook_reviews().
File
- includes/
coder_47.inc, line 157 - This include file implements coder functionality for 4.6 -> 4.7 upgrades.
Code
function _coder_47_message_access_warning() {
return t('!message_access() was removed, replace with a nice case error message', array(
'!message_access' => theme('drupalapi', 'message_access', '4.6'),
));
}