One of the issues I wrestled with in building websites with Drupal was how difficult it seemed to access the entire menu tree in your page template. There are several modules available that people use to “solve” this issue, but at the cost of overcomplexity and one specific feature: knowing which menu item is active [...]
Want to make your breadcrumbs work properly when using a Views page and Menu Trails? The following worked for me.
First, the good part: in modules/menutrails/menutrails.module add the following function:
/**
* Implementation of hook_views_pre_view()
*
* This will be invoked on every view request before the view is
* themed, even if the view is cached
[...]
This is sooo cool. Check it out here: http://blog.seattlepi.nwsource.com/microsoft/archives/151274.asp
This morning when I woke up I noticed it was still very early, so I stayed in bed a little longer and thought through some of the challenges I face in my current projects.
One such problem is high speed string-matching, or more simply put, checking if a piece of text in one list is also [...]