Add Pagination to your Yahoo! BOSS search engine
Published 2 months, 1 week ago in CSS, PHP, Unordered List, YUI and Yahoo! Digg This
Yahoo’s BOSS search API makes it easy for you to create a customized search engine. Yahoo! also has a Design Pattern lLibrary to save time designing your pages. They’ve put a lot of effort into creating the best user experience for search pagination.
Pagination guidelines
Here’s a sample of the Design Library’s ideas for search pagination.
- Display the navigation controls as a row of links.
- Present links in the following order: ‘Prev’, page links, ‘Next’.
- Display a left arrow after the label ‘Prev’.
- Display a right arrow before the label ‘Next’.
- Make the arrow(s) clickable.
- The page links should contain a maximum set of 10 page links. If fewer pages of results exist, only show page links for the available pages.
- When on pages 1-6, the page links should always start at ‘1′.
The rationale for these rules is also interesting:
- Displaying arrow graphics helps differentiate the links and provides larger click targets.
- Disabled controls add little value in this context since
- These links often appear blow the fold.
- The first page of results makes up the vast majority of pageviews. Displaying a disabled “previous” control on all of these is of little added value.
- Although a “First” link has value, it competes with the functionality presented in the random-access links.
- The “Last” link is of little value as the results are sorted by relevance. This is is also problematic since the total number of results (and therefore, the last result) may not be known.
Add this pagination style to your search engine
See the final result on V3GGIE.com: Vegetarian Enchiladas Recipes
Most PHP pagination tutorials assume you are pulling content from a database. Ascanio Colonna created a good tutorial on building pagination with PHP that is agnostic to the data source. I’ve taken his code and modified it to match the Yahoo Design Pattern. I’ve also added the suggested YUI Module markup to stay consistent with the YUI Grids and any future YUI javascript.
The pagination.php file includes a function that creates the module. You’ll need to call this function from your results page with a series of parameters. These are easy to populate from the BOSS interface. It’s worth noting that I am ignoring the BOSS next/last page nodes in the web service and prefer to build my own urls.
The Pagination Code
Lets’ start by looking at the code inside your results.php file. This will call the pagination function and pass the desired parameters.
-
{
-
require ‘/include/pagination.php’;
-
$page = $_REQUEST[‘page’];
-
} else {
-
$page = ‘1′;
-
}
-
$limit = $count;
-
$targetpage = ‘results.php’;
-
$pagestring = ‘?page=’;
-
$summary_name = ‘articles’;
-
$placement = ’summary’;
-
// start pagination
-
echo getPaginationString($page, $totalhits, $limit, $targetpage, $pagestring, $summary_name, $placement);
-
}
Here’s what you are working with:
- require ‘/include/pagination.php’
- Where does the pagination file sit on your server
- $page logic
- First look to see if there is page=x in the url. If so, $page = x, if not, you are on page 1.
- $limit
- How many results will appear on the page
- $targetpage
- what is the name of your results page? index.php, results.php?
- $pagestring
- I tried to minimize this to ?p= but couldn’t track down why it didn’t work. I’ve left it at the default ?page=…
- $summary_name
- This is what appears in the text “xxx (summary_name) results. This is not used in the Yahoo Design Library
- $placement
- You’ll probably want to use summary. This function also allows “footer” for a simplified output
- echo getPaginationString(…)
- Send the information to the function and display the results in the page.
Important Update!
The original code I posted had a serious security flaw. You should never output user’s input directly into your page. I had something like this href=”?query=$_REQUEST['query']“. This allows all sorts of Cross Site Scripting attacks. You must urlencode any text that comes from a user. This is safe: urlencode($_REQUEST['query']).
I apologize if anyone has used this code, as I wrote it on their site. They should immediately update the logic. -Ted
The pagination function
I have streamlined the original code from Asconio, as he was tying into pre-existing facebook styles. This code is for your unique web site.
Results Page
“;
if($lastpage > 1) // Paginator page selection is drawn only if more than 1 pages are there
{
$pagination .= ‘
- ‘;
- Prev
- $counter
- $counter
- $counter
- $counter
- $counter
- $counter
- Next
// First page selector
if ($page > 2)
// Previous page selector
if ($page > 1)
$pagination .= “
“;
// Page selectors
if ($page < 4) //not enough pages to bother
{
for ($counter = 1; $counter <= min(5, $lastpage); $counter++)
{
if ($counter == $page)
$pagination .= “
“;
else
$pagination .= “
“;
}
}
elseif ($page > $lastpage - 3)
{
for($counter = $lastpage - min(5, $lastpage); $counter <= $lastpage; $counter++)
{
if ($counter == $page)
$pagination .= “
“;
else
$pagination .= “
“;
}
}
else
{
for($counter = $page - 2; $counter <= $page + 2; $counter++)
{
if ($counter == $page)
$pagination .= “
“;
else
$pagination .= “
“;
}
}
//next button
if ($page < $lastpage)
$pagination .= “
“;
//last button
if ($page < $lastpage - 1)
$pagination .= ‘
‘;
}
$pagination = “
“;
return $pagination;
} ?>
I’ve added a few classes to the final output. The previous and next links have class”nextlink” or class=”prevlink”. The current page has the number within a strong tag with class=”current”. Finally, the parent module has class=”pagelinks mod”. This makes it pretty simple to style
Pagination CSS
I’m using the YUI Sam Skin sprite for the tabbed search box. I’ve added a couple arrows to this sprite for my search pagination.
-
.pagelinks {
-
text-align:center;
-
border:1px solid #ccc;
-
padding:5px 0 0 0;
-
}
-
.pagelinks ul li {
-
display:inline;
-
}
-
.pagelinks ul a, .pagelinks ul strong {
-
display;block; padding:3px 5px;
-
}
-
.pagelinks ul strong {
-
background-color:green; color:#fff;
-
}
-
.pagelinks li.nextlink a,.pagelinks li.prevlink a {
-
padding-right:15px; font-size:120%; font-wieght:bold; background:url(/images/sprite.png) no-repeat 100% -1943px;
-
}
-
.pagelinks li.prevlink a {
-
padding-right:0px; padding-left:15px; background-position:0 -1973px;
-
}
I am also not a PHP expert and welcome suggestions on improving the code.
Related articles by Zemanta
- Are You Tired of the Same Old Search Engine?
- Buildasearch Combines Multiple Site Seaches into One Box [Search]
- Create your own Search Engine with Yahoo! BOSS
- 5 Best Practices for Mashups
- 5 Best Practices for Mashups


No Responses to “Add Pagination to your Yahoo! BOSS search engine”
Please Wait
Leave a Reply