You are here

function _coder_47_node_list_warning in Coder 6.2

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

File

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

Code

function _coder_47_node_list_warning() {
  return t('!node_list() became node_get_types and now returns an associative array about node types', array(
    '!node_list' => theme('drupalapi', 'node_list'),
  ));
}