First, great job with this module! It is by far the best admin interface for Drupal I've seen. So much easier on the eyes.
I'm having some trouble modifying the menu items, particularly on the top nav bar. I've poked around the code, and I get the basics -- that it's pulling selected admin items from the Navigation menu. I can't seem to successfully make changes to which items show up, however.
Specifically, for my clients I'd like to link to non-admin pages created in Views -- so, for example, they're able to see a list of all nodes of a particular content type. The PHP code seems to be pulling out only admin items for the menu -- seems like it must be an edit of admin_menu_navigation_links() and admin_menu_alter() and maybe something else? Can you please enlighten me?
Thank you!
Comments
Comment #1
yhahn commentedYou're right that the way the admin menu was being built was rather cryptic and not particularly customizable. I committed some changes tonight that should help the situation out http://drupal.org/cvs?commit=222032. The change essentially:
admin. You'll need to runupdate.phpfor this if you're upgrading from a previous version.Hopefully this help -- you should be able to add menu items for your views per usual to the admin menu now.
Comment #2
robynover commentedThis looks great! Thank you.