Closed (works as designed)
Project:
Navbar
Version:
7.x-1.x-dev
Component:
User interface
Priority:
Minor
Category:
Feature request
Assigned:
Unassigned
Reporter:
Created:
17 Mar 2013 at 02:29 UTC
Updated:
2 Jan 2015 at 21:57 UTC
Jump to comment: Most recent
Comments
Comment #1
caschbre commentedI think this would be a great addition!
Comment #2
scottrigbyYou can implement
hook_navbar()in a custom module.Note you can set the weight of items you add in this hook (and if needed modify other items using
hook_navbar_alter()). This example places the search bar higher than 'user', which has a weight of 100.$form['basic']['keys']['#title'] = NULL;just removes the title from the search form render array. You can do whatever you wish to that before callingdrupal_render().Comment #3
caschbre commentedAh, that's great news scottrigby!
Comment #4
heathdutton commentedIs there any work being done to have a "menu search" added?
I mean a way to search the menu for menu items. Administration Menu has had this (see thread: https://www.drupal.org/node/806350) and it has been extremely useful for large sites with hundreds of modules and dozens of content types. I got used to having this, and now find myself killing precious minutes hunting for menu items with this navbar.
It would be a very handy submodule. Has it been done?