function _coder_50_node_get_name_warning in Coder 6
Same name and namespace in other branches
- 5.2 includes/coder_50.inc \_coder_50_node_get_name_warning()
 - 5 includes/coder_50.inc \_coder_50_node_get_name_warning()
 - 6.2 includes/coder_50.inc \_coder_50_node_get_name_warning()
 
1 string reference to '_coder_50_node_get_name_warning'
- coder_50_reviews in includes/
coder_50.inc  - Implementation of hook_reviews().
 
File
- includes/
coder_50.inc, line 183  - This include file implements coder functionality for 4.7 -> 5.x upgrades.
 
Code
function _coder_50_node_get_name_warning() {
  return t('Replace !node_get_name($node) with !node_get_types(\'name\', $node)', array(
    '!node_get_name' => theme('drupalapi', 'node_get_name', '4.7'),
    '!node_get_types' => theme('drupalapi', 'node_get_types', '5'),
  ));
}