You are here

function theme_scanner_item in Search and Replace Scanner 5.2

Same name and namespace in other branches
  1. 6 scanner.module \theme_scanner_item()
  2. 7 scanner.theme.inc \theme_scanner_item()

Theme each search result hit.

Parameters

map $item.:

Return value

html str.

1 theme call to theme_scanner_item()
theme_scanner_results in ./scanner.module
The the search results.

File

./scanner.module, line 1156
Search and Replace Scanner - works on all nodes text content.

Code

function theme_scanner_item($item) {
  $item['count'] = $item['count'] > 0 ? $item['count'] : 'One or more';
  $output .= '<li class="scanner-result">';
  $output .= '<span class="scanner-title">' . l($item['title'], 'node/' . $item['nid']) . '</span><br />';
  $output .= '<span class="scanner-info">[' . $item['count'] . ' matches in ' . $item['type'] . ' ' . $item['field'] . 'field:]</span><br />';
  $output .= '<span class="scanner-text">' . $item['text'] . '</span>';
  $output .= '</li>';
  return $output;
}