You are here

function theme_search_by_page_no_results in Search by Page 6

Themes a page saying there are no search results.

Parameters

$keys: The keywords being searched for.

1 theme call to theme_search_by_page_no_results()
_search_by_page_view in ./search_by_page.module
Returns rendered search form and/or results page.

File

./search_by_page.module, line 1323
Main module file for Drupal module Search by Page.

Code

function theme_search_by_page_no_results($keys) {
  return theme('box', t('Your search yielded no results'), search_help('search#noresults', drupal_help_arg()));
}