Advertisement
Guest User

Untitled

a guest
Mar 16th, 2012
100
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.03 KB | None | 0 0
  1. <?php
  2.  
  3. /**
  4. * @file
  5. * Default theme implementation for displaying search results.
  6. *
  7. * This template collects each invocation of theme_search_result(). This and
  8. * the child template are dependent to one another sharing the markup for
  9. * definition lists.
  10. *
  11. * Note that modules may implement their own search type and theme function
  12. * completely bypassing this template.
  13. *
  14. * Available variables:
  15. * - $search_results: All results as it is rendered through
  16. * search-result.tpl.php
  17. * - $module: The machine-readable name of the module (tab) being searched, such
  18. * as "node" or "user".
  19. *
  20. *
  21. * @see template_preprocess_search_results()
  22. */
  23. ?>
  24. <?php if ($search_results): ?>
  25. <h2><?php print t('Search results');?></h2>
  26. <ol class="search-results <?php print $module; ?>-results">
  27. <?php print $search_results; ?>
  28. </ol>
  29. <?php print $pager; ?>
  30. <?php else : ?>
  31. <h2><?php print t('Your search yielded no results');?></h2>
  32. <?php print search_help('search#noresults', drupal_help_arg()); ?>
  33. <?php endif; ?>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement