function _coder_6x_hook_forms_warning in Coder 6.2
Same name and namespace in other branches
- 6 includes/coder_6x.inc \_coder_6x_hook_forms_warning()
1 string reference to '_coder_6x_hook_forms_warning'
- coder_6x_reviews in includes/
coder_6x.inc - Implementation of hook_reviews().
File
- includes/
coder_6x.inc, line 1313 - This include file implements coder functionality for 5.x -> 6.x upgrades.
Code
function _coder_6x_hook_forms_warning() {
return array(
'#warning' => t('The arguments to !hook_forms() have changed', array(
'!hook_forms' => theme('drupalapi', 'hook_forms', '6'),
)),
'#link' => 'http://drupal.org/node/144132#hook-forms',
);
}