Creating an Alpha Pager with Views 2 and Drupal 6
UPDATE: Earl comments below how this is already built in. Two different ways to achieve a similar result, each with their own pros/cons.
Hats off to Earl Miles and the rest the views developers they have done a tremendous job with Views 2. While the interface is entirely different from that of Views 1, it is so much more intuitive that within a few minutes I had quickly forgotten my bewildered “oh no, I know nothing” look :)
From reading all of the docs and quietly watching development commits, I knew Views 2 was going to eliminate a lot of the Views 1 helper modules and open up a whole new world of awesomeness. While I haven’t seen many blog posts detailing just which functionality/modules have been replaced with Views 2, I wanted to kickstart things with my own discovery as I played around with Views 2 quite thoroughly this afternoon.
With Views 1, to build an alpha pager you would use the views alpha pager module in conjunction with your view. But what about Views 2?
Well it’s not so straightforward. I read somewhere about some sort of “glossary” view, but how could that be used to create an alpha pager? Well turns out, quite easy. Here’s how:
- First, create a new page view and set your path to "directory"
- Assuming you want your pager to be based on the nodes title, add in an argument: "Node: Title"
- Set title equal to: "Directory: %1"
- Action to take if argument is not present: "Display all values"
- Check "Glossary Mode"
- Set character limit to "1"
- Case: "upper case"
- Case in path: "lower case"
- Save and update
- Add in a header under basic settings
- Set up your alpha pager:
<div class="alpha-pager">
<a class="alpha-page" href="/directory/a">A</a>
<a class="alpha-page" href="/directory/b">B</a>
...
</div>
Note: if you have PHP filter enabled, you can set up proper links using l(), otherwise use basic HTML
And voila! You can now browse by starting letter of each node. Add in a few more exposed filters like taxonomy terms or search and you have a powerful directory!
That was definitely easy and Views 2 replaces its first helper module. What’s next? :)
Ted Serbinski Newsletter
Join the newsletter to receive the latest updates in your inbox.