function _coder_6x_hook_info_auth_warning in Coder 5
Same name and namespace in other branches
- 5.2 includes/coder_6x.inc \_coder_6x_hook_info_auth_warning()
- 6.2 includes/coder_6x.inc \_coder_6x_hook_info_auth_warning()
- 6 includes/coder_6x.inc \_coder_6x_hook_info_auth_warning()
1 string reference to '_coder_6x_hook_info_auth_warning'
- coder_6x_reviews in includes/
coder_6x.inc - @file This include file implements coder functionality for 5.x -> 6.x upgrades
File
- includes/
coder_6x.inc, line 457 - This include file implements coder functionality for 5.x -> 6.x upgrades
Code
function _coder_6x_hook_info_auth_warning() {
return array(
'#warning' => t('hook no longer exists, use !hook_form_alter() to swap your own validation handler', array(
'!hook_form_alter' => theme('drupalapi', 'hook_form_alter'),
)),
'#link' => 'http://drupal.org/node/114774#dist-auth',
);
}