Re: [development] Interacting with Views Tabs via code

2010-03-29 Thread Sam Tresler
That works. Thanks! I weighted my module heavier, and added it at that juncture. I agree creating the parent_item in a module may be cleaner, but as the tab I need won't be the default I thought that might get needlessly difficult. I might, in the near future, move the view to code, move

Re: [development] Interacting with Views Tabs via code

2010-03-29 Thread la...@garfieldtech.com
Views does all of its menu manipulation in hook_menu_alter already, so if your hook_menu_alter runs first then the views additions won't be there. Try setting your module weight to heavier than views. Alternatively, create your page first using hook_menu as the default tab and then tweak the

[development] Interacting with Views Tabs via code

2010-03-29 Thread Sam Tresler
Hello, Not sure if this is the best place, but I've come across an interesting problem and I'm not certain how to proceed. I have a 3 tabbed view (you can actually see the live version here: http://livestrongaction.org/featured_dedications) . I want to add a 4th tab, and thought this wou