You are here

function _coder_47_module_get_name_warning in Coder 5

Same name and namespace in other branches
  1. 5.2 includes/coder_47.inc \_coder_47_module_get_name_warning()
  2. 6.2 includes/coder_47.inc \_coder_47_module_get_name_warning()
  3. 6 includes/coder_47.inc \_coder_47_module_get_name_warning()
1 string reference to '_coder_47_module_get_name_warning'
coder_47_reviews in includes/coder_47.inc
@file This include file implements coder functionality for 4.6 -> 4.7 upgrades

File

includes/coder_47.inc, line 137
This include file implements coder functionality for 4.6 -> 4.7 upgrades

Code

function _coder_47_module_get_name_warning() {
  return t('!module_get_node_name() deprecated and now handled by !node_get_base().', array(
    '!module_get_node_name' => theme('drupalapi', 'module_get_node_name', '4.6'),
    '!node_get_base' => theme('drupalapi', 'node_get_base'),
  ));
}