constant MENU_SUGGESTED_ITEM in Drupal 6
Same name and namespace in other branches
- 4 includes/menu.inc \MENU_SUGGESTED_ITEM
- 5 includes/menu.inc \MENU_SUGGESTED_ITEM
- 7 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
9 uses of MENU_SUGGESTED_ITEM
- blog_menu in modules/
blog/ blog.module - Implementation of hook_menu().
- book_menu in modules/
book/ book.module - Implementation of hook_menu().
- contact_menu in modules/
contact/ contact.module - Implementation of hook_menu().
- filter_menu in modules/
filter/ filter.module - Implementation of hook_menu().
- forum_menu in modules/
forum/ forum.module - Implementation of hook_menu().
File
- includes/
menu.inc, line 120 - API for the Drupal menu system.
Code
define('MENU_SUGGESTED_ITEM', MENU_VISIBLE_IN_BREADCRUMB | 0x10);