Same name and namespace in other branches
  1. 4.6.x includes/menu.inc \MENU_SUGGESTED_ITEM
  2. 4.7.x includes/menu.inc \MENU_SUGGESTED_ITEM
  3. 5.x includes/menu.inc \MENU_SUGGESTED_ITEM
  4. 6.x includes/menu.inc \MENU_SUGGESTED_ITEM

Menu type -- A normal menu item, hidden until enabled by an administrator.

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

11 uses of MENU_SUGGESTED_ITEM
blog_menu in modules/blog/blog.module
Implements hook_menu().
book_menu in modules/book/book.module
Implements hook_menu().
contact_menu in modules/contact/contact.module
Implements hook_menu().
filter_menu in modules/filter/filter.module
Implements hook_menu().
hook_menu in modules/system/system.api.php
Define menu items and page callbacks.

... See full list

File

includes/menu.inc, line 161
API for the Drupal menu system.

Code

define('MENU_SUGGESTED_ITEM', MENU_VISIBLE_IN_BREADCRUMB | 0x10);