(1) Lets have a menu called "Navigation" with an Item, SubItem, SubSubItem and SubSubItem this way:
Math -> Summer Contest 2005 -> Exercises -> Exercise 1
(2) I don't want the menu to expand further "Summer Contest 2005", so "Summer Contest 2005" is a leaf. This is, because I have the links to the articels on level deeper in the articel itself.
But I don't want to miss the breadcrumb. Let's say I am on "Exercise 1":
I want the breadcrumb: Home -> Math -> Summer Contest 2005 -> Exercises
Furthermore I want to have "Math -> Summer Contest 2005" expanded in the Navigation menu.
(3) Now, my current solution:
Look for the values of "type" in the table "menu". "Summer Contest 2005" and "Exercises" will have:
118 = MENU_CUSTOM_ITEM | MENU_MODIFIED_BY_ADMIN
= MENU_VISIBLE_IN_TREE | MENU_VISIBLE_IN_BREADCRUMB | MENU_CREATED_BY_ADMIN | MENU_MODIFIABLE_BY_ADMIN | MENU_MODIFIED_BY_ADMIN
If I disable the Items, they would have:
112 = MENU_CREATED_BY_ADMIN | MENU_MODIFIABLE_BY_ADMIN | MENU_MODIFIED_BY_ADMIN
Now, what I want is:
116 = MENU_VISIBLE_IN_BREADCRUMB | MENU_CREATED_BY_ADMIN | MENU_MODIFIABLE_BY_ADMIN | MENU_MODIFIED_BY_ADMIN
Changing this in the database (and flushing the cache) will truely do want I wanted, but it's not achievable with the menu module.
(4) So what do you suggest? A feature that needs to be added to the menu module? Or something to do with a new module? Or maybe another solution?