function _coder_6x_menu_node_add_warning in Coder 6
Same name and namespace in other branches
- 5.2 includes/coder_6x.inc \_coder_6x_menu_node_add_warning()
- 6.2 includes/coder_6x.inc \_coder_6x_menu_node_add_warning()
1 string reference to '_coder_6x_menu_node_add_warning'
- coder_6x_reviews in includes/
coder_6x.inc - Implementation of hook_reviews().
File
- includes/
coder_6x.inc, line 888 - This include file implements coder functionality for 5.x -> 6.x upgrades.
Code
function _coder_6x_menu_node_add_warning() {
return array(
'#warning' => t('The node/add/$type menu items are now auto-generated by the menu system in 6.x. You should not declare them in your menu hook. See <a href="@url">node/add is now menu generated</a>.', array(
'@url' => url('http://drupal.org/node/114774#node_add_summary'),
)),
'#link' => 'http://drupal.org/node/114774#node_add_summary',
);
}