You are here

function _coder_50_module_exist_warning in Coder 6.2

Same name and namespace in other branches
  1. 5.2 includes/coder_50.inc \_coder_50_module_exist_warning()
  2. 5 includes/coder_50.inc \_coder_50_module_exist_warning()
  3. 6 includes/coder_50.inc \_coder_50_module_exist_warning()
1 string reference to '_coder_50_module_exist_warning'
coder_50_reviews in includes/coder_50.inc
Implementation of hook_reviews().

File

includes/coder_50.inc, line 138
This include file implements coder functionality for 4.7 -> 5.x upgrades.

Code

function _coder_50_module_exist_warning() {
  return t('!module_exist() is now !module_exists()', array(
    '!module_exist' => theme('drupalapi', 'module_exist', '4.7'),
    '!module_exists' => theme('drupalapi', 'module_exists', '5'),
  ));
}