_coder_review_7x_process_functions_warning

Versions
mediamosa-21
_coder_review_7x_process_functions_warning()

Code

sites/all/modules/coder/coder_review/includes/coder_review_7x.inc, line 1858

<?php
function _coder_review_7x_process_functions_warning() {
  return array(
    '#warning' => t('!expand_password_confirm(), !expand_date(), !expand_radios(), !form_expand_ahah(), !expand_checkboxes(), !process_weight()  have been renamed.',
      array(
        '!expand_password_confirm()' => theme('drupalapi', 'expand_password_confirm()', 6),
        '!expand_date()' => theme('drupalapi', 'expand_date()', 6),
        '!expand_radios()' => theme('drupalapi', 'expand_radios()', 6),
        '!form_expand_ahah()' => theme('drupalapi', 'form_expand_ahah()', 6),
        '!expand_checkboxes()' => theme('drupalapi', 'expand_checkboxes()', 6),
        '!process_weight()' => theme('drupalapi', 'process_weight()', 6),
      )
    ),
    '#link' => 'http://drupal.org/node/224333#process_functions',
  );
}
?>