constant MENU_SUGGESTED_ITEM

  1. 7.x drupal-7.x/includes/menu.inc MENU_SUGGESTED_ITEM
  2. 6.x drupal-6.x/includes/menu.inc MENU_SUGGESTED_ITEM

Modules may "suggest" menu items that the administrator may enable. They act just as callbacks do until enabled, at which time they act like normal items. Note for the value: 0x0010 was a flag which is no longer used, but this way the values of MENU_CALLBACK and MENU_SUGGESTED_ITEM are separate.

Related topics

10 uses of MENU_SUGGESTED_ITEM
blog_menu in drupal-6.x/modules/blog/blog.module
Implementation of hook_menu().
book_menu in drupal-6.x/modules/book/book.module
Implementation of hook_menu().
contact_menu in drupal-6.x/modules/contact/contact.module
Implementation of hook_menu().
filter_menu in drupal-6.x/modules/filter/filter.module
Implementation of hook_menu().
forum_menu in drupal-6.x/modules/forum/forum.module
Implementation of hook_menu().

... See full list

File

drupal-6.x/includes/menu.inc, line 120
API for the Drupal menu system.

Code

define('MENU_SUGGESTED_ITEM', MENU_VISIBLE_IN_BREADCRUMB | 0x0010)