function theme_scanner_item in Search and Replace Scanner 7
Same name and namespace in other branches
- 5.2 scanner.module \theme_scanner_item()
- 6 scanner.module \theme_scanner_item()
Theme each search result hit.
1 theme call to theme_scanner_item()
- theme_scanner_results in ./
scanner.theme.inc - Theme the search results.
File
- ./
scanner.theme.inc, line 36 - Theme callbacks for the scanner module.
Code
function theme_scanner_item($variables) {
$output = '';
$item = $variables['item'];
$item['count'] = $item['count'] > 0 ? $item['count'] : 'One or more';
$output .= '<li class="scanner-result">';
$output .= '<span class="scanner-title">' . l('#' . $item['nid'] . ': ' . $item['title'], 'node/' . $item['nid']) . '</span><br />';
$output .= '<span class="scanner-info">[' . $item['count'] . ' matches in ' . $item['type'] . ' ' . $item['field_label'] . ' field:]</span><br />';
$output .= '<span class="scanner-text">' . $item['text'] . '</span>';
$output .= '</li>';
return $output;
}