Development

Pointing All Taxonomy Term Links to ApacheSolr Search Results

I’ve been working on a project that leverages ApacheSolr for many of the displays on the site. One of the requirements is that every instance of a taxonomy term link on the site needs to point to search results pre-filtered (using FacetAPI) on the term. The other requirement is that if a taxonomy term’s vocabulary doesn’t have an associated search facet, the user should end up on the search page with results as if the user had searched for the term’s name in the search text box.

  1. If you see a “Climate Change” term (tid = 153) link from the “Topics” vocabulary (vid = 8), it should render as  <a href="/search/site?f[0]=im_field_tr_topics%3A153">Climate Change</a> in the DOM.
  2. If you see a “Blog” term (tid = 123) link from the “Keywords” vocabulary (vid = 6), it should render as  <a href="/search/site/blog">Blog</a> in the DOM.

To override all of the taxonomy term links we implement hook_entity_info_alter() to define a new uri callback for taxonomy_term entities. We can override the output in the callback function we define. Here’s what it looks like right now (I reduced the complexity for this demo). I’m sure I’ll have to tweak it some more, but it illustrates the basic strategy.

It’s important to note that the callback function needs to return an array of the variables that the url() function expects (notice how I used “options” param). See callback_entity_info_uri() for more info.

 

Leave a Reply

Your email address will not be published.