You are here

function _coder_review_7x_actions_synchronize_warning in Coder 7

1 string reference to '_coder_review_7x_actions_synchronize_warning'
coder_review_7x_reviews in coder_review/includes/coder_review_7x.inc
Implements hook_reviews().

File

coder_review/includes/coder_review_7x.inc, line 1395
This include file implements coder functionality for 6.x -> 7.x upgrades.

Code

function _coder_review_7x_actions_synchronize_warning() {
  return array(
    '#warning' => t('Parameters for !actions_synchronize() have changed', array(
      '!actions_synchronize()' => theme('drupalapi', array(
        'function' => 'actions_synchronize',
        'version' => 7,
      )),
    )),
    '#link' => 'http://drupal.org/node/224333#actions_synchronize',
  );
}