You are here

function _coder_6x_schema_api_warning in Coder 6

Same name and namespace in other branches
  1. 5.2 includes/coder_6x.inc \_coder_6x_schema_api_warning()
  2. 5 includes/coder_6x.inc \_coder_6x_schema_api_warning()
  3. 6.2 includes/coder_6x.inc \_coder_6x_schema_api_warning()
1 string reference to '_coder_6x_schema_api_warning'
coder_6x_reviews in includes/coder_6x.inc
Implementation of hook_reviews().

File

includes/coder_6x.inc, line 848
This include file implements coder functionality for 5.x -> 6.x upgrades.

Code

function _coder_6x_schema_api_warning() {
  return array(
    '#warning' => t('A new schema API has been added in 6.x'),
    '#link' => 'http://drupal.org/node/146843',
    '#description' => t('This patch caused changes to the format of hook_install(), hook_uninstall(), and hook_update_N(). No longer are switch statements done on $GLOBALS[\'db_type\']; instead, use the variety of schema API functions to perform table manipulation.'),
  );
}