vote up 0 vote down star

Is it possible to add a menu item from within hook_menu() directly to the primary-links menu instead of navigation where they like to reside by default?

flag

2 Answers

vote up 5 vote down check

Actually, it is possible. One of the optional keys in a hook_menu() implementation is in fact 'menu_name', and its value can be the unique name of a given menu. In your case, 'primary-links'. The Devel module uses that technique to add its items to a custom 'Development' menu.

Also note that versions of Drupal 6 earlier than 6.6 (IIRC) had a bug that made it impossible to move a menu item already defined in hook_menu() simply by changing the hook_menu() implementation -- you had to explicitly edit the menu item in the UI to reparent it. Drupal 6.7 and later (again, going by memory) fixed that bug and hook_menu is all that's needed.

link|flag
It works! Thanks! – dcousineau Aug 11 at 14:59
vote up 1 vote down

Not via hook_menu, no, but there's nothing preventing you from doing a direct database query.

Given that some themes don't use primary links and that many users would probably rather you not interfere with what they consider the absolute most important links on their site, I'd avoid it even if possible.

link|flag
It will not be released to the public, but hearing that I can't without a database query that's enough of an answer for me. – dcousineau Aug 10 at 21:55

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.