function _coder_50_module_exist_warning in Coder 5
Same name and namespace in other branches
- 5.2 includes/coder_50.inc \_coder_50_module_exist_warning()
- 6.2 includes/coder_50.inc \_coder_50_module_exist_warning()
- 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 - @file This include file implements coder functionality for 4.7 -> 5.0 upgrades
File
- includes/
coder_50.inc, line 126 - This include file implements coder functionality for 4.7 -> 5.0 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'),
));
}