You are here

function _coder_47_message_access_warning in Coder 6.2

Same name and namespace in other branches
  1. 5.2 includes/coder_47.inc \_coder_47_message_access_warning()
  2. 5 includes/coder_47.inc \_coder_47_message_access_warning()
  3. 6 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'),
  ));
}