You are here

function scanner_theme in Search and Replace Scanner 7

Same name and namespace in other branches
  1. 8 scanner.module \scanner_theme()
  2. 6 scanner.module \scanner_theme()

Implements hook_theme().

File

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

Code

function scanner_theme() {
  return array(
    'scanner_results' => array(
      'file' => 'scanner.theme.inc',
      'variables' => array(
        'results' => NULL,
      ),
    ),
    'scanner_item' => array(
      'file' => 'scanner.theme.inc',
      'variables' => array(
        'item' => NULL,
      ),
    ),
    'scanner_replace_results' => array(
      'file' => 'scanner.theme.inc',
      'variables' => array(
        'results' => NULL,
      ),
    ),
    'scanner_replace_item' => array(
      'file' => 'scanner.theme.inc',
      'variables' => array(
        'item' => NULL,
      ),
    ),
  );
}