Ejemplo n.º 1
0
    ?>
  <ol class="search-results <?php 
    print $module;
    ?>
-results">
    <?php 
    print $search_results;
    ?>
  </ol>
  <?php 
    if (isset($filter) && $filter != '' && $filter_position == 'below') {
        ?>
    <div class="custom-search-filter">
      <?php 
        print $filter;
        ?>
    </div>
  <?php 
    }
    ?>
  <?php 
    print $pager;
} else {
    ?>
  <h2><?php 
    print t('Your search yielded no results');
    ?>
</h2>
  <?php 
    print search_help('search#noresults', drupal_help_arg());
}
Ejemplo n.º 2
0
 protected function getNoResultsPage()
 {
     $output = $this->getForm();
     $results = theme('box', 'Ничего не найдено', search_help('search#noresults', drupal_help_arg()));
     return $output;
 }