You are here

function _coder_6x_url_l_warning in Coder 6.2

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

File

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

Code

function _coder_6x_url_l_warning() {
  return array(
    '#warning' => t('!url() and !l() arguments changed, if you have a lot of these use <a href="@script">this conversion script</a>', array(
      '!url' => theme('drupalapi', 'url', '6'),
      '!l' => theme('drupalapi', 'l', '6'),
      '@script' => 'http://drupal.org/files/issues/replace.php_.txt',
    )),
    '#link' => 'http://drupal.org/node/114774#url',
  );
}