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