You are here

google-appliance-sort-headers.tpl.php in Google Search Appliance 7

default theme implementation for search results sort headers

template_preprocess_google_appliance_sort_headers()

File

theme/google-appliance-sort-headers.tpl.php
View source
<?php

// $Id$

/**
* @file 
* 	default theme implementation for search results sort headers
*
* @see 
*		template_preprocess_google_appliance_sort_headers()
*/

//dsm($variables);
?>

<div class="container-inline google-appliance-sort-headers">
	<?php

foreach ($sorters as $sorter) {
  ?>
  	<div class="google-appliance-sorter"><?php

  print $sorter['display'];
  ?></div>
  <?php

}
?>
</div>